Files
Pien-Studio/apps/web/app/layout.tsx
T
2026-05-16 11:53:50 +07:00

21 lines
460 B
TypeScript

import type { Metadata } from "next";
import type { ReactNode } from "react";
import "./globals.css";
import { Footer } from "../components/footer";
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}
<Footer />
</body>
</html>
);
}