← back to Freddy

app/layout.tsx

22 lines

import type { Metadata } from 'next';
import './globals.css';

export const metadata: Metadata = {
  title: 'Freddy - The Fundraising Coordinator',
  description: 'Democratic funding marketplace connecting citizens, non-profits, and granters',
};

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <html lang="en" className="dark">
      <body>
        <div id="app-root">{children}</div>
      </body>
    </html>
  );
}