36 lines
810 B
TypeScript
36 lines
810 B
TypeScript
import type { Metadata } from "next";
|
|
import { Inter, Source_Serif_4 } from "next/font/google";
|
|
import "./globals.css";
|
|
|
|
const inter = Inter({
|
|
variable: "--font-sans",
|
|
subsets: ["latin"],
|
|
display: "swap",
|
|
});
|
|
|
|
const serif = Source_Serif_4({
|
|
variable: "--font-serif",
|
|
subsets: ["latin"],
|
|
display: "swap",
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Co-op Check-in · Food Co-op Initiative",
|
|
description: "Update your co-op's progress through the FCI organizing framework.",
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<html
|
|
lang="en"
|
|
className={`${inter.variable} ${serif.variable} h-full antialiased`}
|
|
>
|
|
<body className="min-h-full flex flex-col font-sans">{children}</body>
|
|
</html>
|
|
);
|
|
}
|