diff --git a/oldapp/favicon.ico b/oldapp/favicon.ico deleted file mode 100644 index 718d6fe..0000000 Binary files a/oldapp/favicon.ico and /dev/null differ diff --git a/oldapp/layout.js b/oldapp/layout.js deleted file mode 100644 index 7bf337d..0000000 --- a/oldapp/layout.js +++ /dev/null @@ -1,29 +0,0 @@ -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 = { - title: "Create Next App", - description: "Generated by create next app", -}; - -export default function RootLayout({ children }) { - return ( - - - {children} - - - ); -} diff --git a/oldapp/page.js b/oldapp/page.js deleted file mode 100644 index 61edd89..0000000 --- a/oldapp/page.js +++ /dev/null @@ -1,101 +0,0 @@ -import Image from "next/image"; - -export default function Home() { - return ( -
-
- Next.js logo -
    -
  1. - Get started by editing{" "} - - src/app/page.js - - . -
  2. -
  3. Save and see your changes instantly.
  4. -
- -
- - Vercel logomark - Deploy now - - - Read our docs - -
-
- -
- ); -}