start of landing page, needs 2 intro paragraphs & links, also images

This commit is contained in:
2025-05-25 00:59:31 -04:00 Unverified
parent 30a320f049
commit a5ce703879
15 changed files with 537 additions and 123 deletions
+1 -20
View File
@@ -1,22 +1,5 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
const geistSans = Geist({
variable: "--font-geist-sans",
subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({
children,
}: Readonly<{
@@ -24,9 +7,7 @@ export default function RootLayout({
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
<body>
{children}
</body>
</html>