-
+
-
+ Get started by editing{" "}
+
+ app/page.tsx ++ . +
+ - Save and see your changes instantly. +
From befc9ba3e4a9b24cdd0397663c04c98688d98d9b Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Mon, 23 Sep 2024 09:18:05 +0200 Subject: Initial nextjs project generation --- geshem/app/favicon.ico | Bin 0 -> 25931 bytes geshem/app/fonts/GeistMonoVF.woff | Bin 0 -> 67864 bytes geshem/app/fonts/GeistVF.woff | Bin 0 -> 66268 bytes geshem/app/globals.css | 27 ++++++++++ geshem/app/layout.tsx | 35 +++++++++++++ geshem/app/page.tsx | 101 ++++++++++++++++++++++++++++++++++++++ 6 files changed, 163 insertions(+) create mode 100644 geshem/app/favicon.ico create mode 100644 geshem/app/fonts/GeistMonoVF.woff create mode 100644 geshem/app/fonts/GeistVF.woff create mode 100644 geshem/app/globals.css create mode 100644 geshem/app/layout.tsx create mode 100644 geshem/app/page.tsx (limited to 'geshem/app') diff --git a/geshem/app/favicon.ico b/geshem/app/favicon.ico new file mode 100644 index 0000000..718d6fe Binary files /dev/null and b/geshem/app/favicon.ico differ diff --git a/geshem/app/fonts/GeistMonoVF.woff b/geshem/app/fonts/GeistMonoVF.woff new file mode 100644 index 0000000..f2ae185 Binary files /dev/null and b/geshem/app/fonts/GeistMonoVF.woff differ diff --git a/geshem/app/fonts/GeistVF.woff b/geshem/app/fonts/GeistVF.woff new file mode 100644 index 0000000..1b62daa Binary files /dev/null and b/geshem/app/fonts/GeistVF.woff differ diff --git a/geshem/app/globals.css b/geshem/app/globals.css new file mode 100644 index 0000000..13d40b8 --- /dev/null +++ b/geshem/app/globals.css @@ -0,0 +1,27 @@ +@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; +} + +@layer utilities { + .text-balance { + text-wrap: balance; + } +} diff --git a/geshem/app/layout.tsx b/geshem/app/layout.tsx new file mode 100644 index 0000000..a36cde0 --- /dev/null +++ b/geshem/app/layout.tsx @@ -0,0 +1,35 @@ +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", +}; + +export default function RootLayout({ + children, +}: Readonly<{ + children: React.ReactNode; +}>) { + return ( + +
+ {children} + + + ); +} diff --git a/geshem/app/page.tsx b/geshem/app/page.tsx new file mode 100644 index 0000000..433c8aa --- /dev/null +++ b/geshem/app/page.tsx @@ -0,0 +1,101 @@ +import Image from "next/image"; + +export default function Home() { + return ( +
+ app/page.tsx
+
+ .
+