Full-stack Next.js application with App Router, server components, and API routes. SEO-optimized with metadata API.
import type { Metadata } from 'next';
export const metadata: Metadata = {
title: 'My App',
description: 'Built with Next.js',
};
export default function RootLayout({
children,
}: { children: React.ReactNode }) {
return (
<html lang="en">
<body>{children}</body>
</html>
);
}Open in RoadCode