-
-
-
- Get started by editing{" "}
-
- app/page.tsx -
- . -
- - Save and see your changes instantly. -
diff --git a/front-end/app/globals.css b/front-end/app/globals.css deleted file mode 100644 index 6b717ad..0000000 --- a/front-end/app/globals.css +++ /dev/null @@ -1,21 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; - -:root { - --background: #ffffff; - --foreground: #171717; -} - -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - -body { - color: var(--foreground); - background: var(--background); - font-family: Arial, Helvetica, sans-serif; -} diff --git a/front-end/app/layout.tsx b/front-end/app/layout.tsx index f7fa87e..0703997 100644 --- a/front-end/app/layout.tsx +++ b/front-end/app/layout.tsx @@ -1,22 +1,3 @@ -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 +5,7 @@ export default function RootLayout({ }>) { return ( -
+ {children} diff --git a/front-end/app/page.tsx b/front-end/app/page.tsx index 9007252..bb85eba 100644 --- a/front-end/app/page.tsx +++ b/front-end/app/page.tsx @@ -1,101 +1,6 @@ -import Image from "next/image"; - export default function Home() { return ( -
- app/page.tsx
-
- .
-