Files
Pien-Studio/apps/web/app/layout.tsx
T
2026-05-10 03:06:54 +07:00

17 lines
378 B
TypeScript

import type { Metadata } from "next";
import type { ReactNode } from "react";
import "./globals.css";
export const metadata: Metadata = {
title: "pien.studio",
description: "Local-first expressive image editor",
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}