bootstrapped

This commit is contained in:
Milo Schwartz 2024-09-27 21:39:03 -04:00
parent b7c1716fa7
commit d2e35b4a1f
No known key found for this signature in database
24 changed files with 15511 additions and 5203 deletions

View file

@ -1,35 +1,19 @@
import type { Metadata } from "next";
import localFont from "next/font/local";
import "./globals.css";
const geistSans = localFont({
src: "./fonts/GeistVF.woff",
variable: "--font-geist-sans",
weight: "100 900",
});
const geistMono = localFont({
src: "./fonts/GeistMonoVF.woff",
variable: "--font-geist-mono",
weight: "100 900",
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
title: "Pangolin",
description: "",
};
export default function RootLayout({
children,
children,
}: Readonly<{
children: React.ReactNode;
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
return (
<html lang="en">
<body>{children}</body>
</html>
);
}