Files
coolify-examples/nextjs/spa/app/layout.tsx
peaklabs-dev f8b3c24432 feat(static): improve nextjs static example
- upgrade all dependencies
- upgrade to Tailwind CSS v4
- remove ugly default background
- remove unnecessary default content
- clean up files and remove those that are no longer needed
2025-06-23 21:41:11 +02:00

23 lines
445 B
TypeScript

import type { Metadata } from "next";
import { Inter } from "next/font/google";
import "./globals.css";
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}