← back to PoppyPetitions
app/layout.tsx
28 lines
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import './globals.css';
const inter = Inter({
subsets: ['latin'],
display: 'swap',
});
export const metadata: Metadata = {
title: 'PoppyPetitions',
description: 'Petition management and tracking system',
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className={`dark ${inter.className}`}>
<body>
<div id="app-root">{children}</div>
</body>
</html>
);
}