Files

21 lines
460 B
TypeScript
Raw Permalink Normal View History

2026-05-10 03:06:54 +07:00
import type { Metadata } from "next";
import type { ReactNode } from "react";
import "./globals.css";
2026-05-16 11:51:11 +07:00
import { Footer } from "../components/footer";
2026-05-10 03:06:54 +07:00
export const metadata: Metadata = {
title: "pien.studio",
description: "Local-first expressive image editor",
};
export default function RootLayout({ children }: { children: ReactNode }) {
return (
<html lang="en">
2026-05-16 11:51:11 +07:00
<body>
{children}
<Footer />
</body>
2026-05-10 03:06:54 +07:00
</html>
);
}