mirror of
https://github.com/YuzuZensai/Pien-Studio.git
synced 2026-09-02 14:18:35 +00:00
17 lines
378 B
TypeScript
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>
|
||
|
|
);
|
||
|
|
}
|