diff --git a/app/globals.css b/app/globals.css
index a2dc41e..80dc0f8 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -1,17 +1,12 @@
-@import "tailwindcss";
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
}
-@theme inline {
- --color-background: var(--background);
- --color-foreground: var(--foreground);
- --font-sans: var(--font-geist-sans);
- --font-mono: var(--font-geist-mono);
-}
-
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
diff --git a/app/page.tsx b/app/page.tsx
index 669cae5..24c4b72 100644
--- a/app/page.tsx
+++ b/app/page.tsx
@@ -1,262 +1,51 @@
-import Image from "next/image";
-import Link from "next/link";
+"use client";
-const basePath = process.env.NODE_ENV === "production" ? "/gfbs3-portfolio-demo" : "";
+import { useState } from "react";
+import Link from "next/link";
export default function Home() {
+ const [menuOpen, setMenuOpen] = useState(false);
+
return (
-
- {/* Grid Background */}
-
+
- {/* Navigation */}
-
+
);
-}
-
-// Simple Icons
-function ArrowRightIcon({ className }: { className?: string }) {
- return (
-
- )
-}
-
-function ArrowUpRightIcon({ className }: { className?: string }) {
- return (
-
- )
-}
+}
\ No newline at end of file