karuracc_dev_test/app/layout.tsx

20 lines
382 B
TypeScript
Raw Normal View History

import type { Metadata } from "next";
import "./globals.css";
export const metadata: Metadata = {
title: "Fireside Test App",
description: "End-to-end deployment test — Forgejo · Dokploy · Supabase",
};
export default function RootLayout({
children,
}: {
children: React.ReactNode;
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}