+ {/* Grid background */}
+
- {/* buttons */}
-
-
-
-
-
-
-
- Download for Mac
-
-
-
-
-
-
-
-
-
- Intel
-
-
-
-
+
+
+ {/* Title */}
+
+
+ Download Void
+
+
+ Try the beta edition of Void, and help us improve by providing{' '}
+
+ feedback
+ !
+
+
+
+ {/* Download buttons */}
+
+
+
+
+ Download for Mac
+
+
+
+
+
+ Intel
+
+
+
+
+
+
+
+ Download for Windows
+
+
+
+
+
+ {/* Floating logo */}
+
+
+
+
+
+ {/* Footer */}
+
+
+ Alternatively, download Void from the source on{' '}
+
+ GitHub
+ .
+
-
-
-
-
-
-
- Download for Windows
-
-
-
-
- {/*
-
-
-
- Linux
-
-
-
- */}
-
-
-
+
-
- {/* right: floater */}
-
-
-
-
-
-
-
-
- {/* desc */}
-
- {`Alternatively, download Void from the source on `}
-
- GitHub
- {`.`}
-
-
-}
+ );
+};
export default DownloadBetaPage
diff --git a/app/globals.css b/app/globals.css
index b5c61c9..06a66a1 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -1,3 +1,33 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
+
+:root {
+ --background: #ffffff;
+ --foreground: #171717;
+}
+
+:root[class~="dark"] {
+ --background: #0a0a0a;
+ --foreground: #ededed;
+}
+
+body {
+ color: var(--foreground);
+ background: var(--background);
+}
+
+/* Add theme-aware utility classes */
+@layer utilities {
+ .text-primary {
+ @apply text-gray-900 dark:text-white;
+ }
+
+ .bg-primary {
+ @apply bg-white dark:bg-black;
+ }
+
+ .border-primary {
+ @apply border-gray-200 dark:border-white/20;
+ }
+}
\ No newline at end of file
diff --git a/app/layout.tsx b/app/layout.tsx
index bf96106..3506e52 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -8,6 +8,8 @@ import "./globals.css";
import { Footer } from "@/components/landingpage/Footer";
import { Header } from "@/components/landingpage/Header";
import { CSPostHogProvider } from '../components/providers'
+import Navbar from "@/components/ui/navbar";
+import { ThemeProvider } from "@/components/theme-provider";
// const inter = Inter({ subsets: ["latin"] });
@@ -43,14 +45,16 @@ export default function RootLayout({ children }: Readonly<{ children: React.Reac
{/* in dark mode, text-black is not the default */}
-
- {children}
-
+
+
+ {children}
+
+