-
-
-
- Get started by editing{" "}
-
- app/page.tsx -
- . -
- - Save and see your changes instantly. -
From f341cf16e535ce7b1f68a6f38286a89e9711e7f9 Mon Sep 17 00:00:00 2001 From: Savely Savianok <1986developer@gmail.com> Date: Mon, 10 Feb 2025 01:18:26 +0300 Subject: [PATCH] chore: cleared example of next.js app --- front-end/app/globals.css | 21 -------- front-end/app/layout.tsx | 23 +-------- front-end/app/page.tsx | 99 +------------------------------------ front-end/public/file.svg | 1 - front-end/public/globe.svg | 1 - front-end/public/next.svg | 1 - front-end/public/vercel.svg | 1 - front-end/public/window.svg | 1 - 8 files changed, 3 insertions(+), 145 deletions(-) delete mode 100644 front-end/app/globals.css delete mode 100644 front-end/public/file.svg delete mode 100644 front-end/public/globe.svg delete mode 100644 front-end/public/next.svg delete mode 100644 front-end/public/vercel.svg delete mode 100644 front-end/public/window.svg 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
-
- .
-