diff --git a/src/app/page.tsx b/src/app/page.tsx index b3398c8..ceb3c91 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,15 +1,9 @@ "use client"; -import { useEffect } from 'react'; -import { useRouter } from 'next/navigation'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import FooterSimple from '@/components/sections/footer/FooterSimple'; export default function LandingPage() { - const router = useRouter(); - - useEffect(() => { - router.push('/components'); - }, [router]); return ( - {/* This page redirects immediately client-side, so no visible content is rendered. */} - {/* An empty div is included to satisfy the ThemeProvider wrapper requirement for JSX. */} -
+ {/* This page previously redirected, now it will display content. */} + {/* Main content area would go here */} +
+
+ + +
); } diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 1ef61ac..616e37c 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #1C0A0A; - --card: #2A1208; - --foreground: #F5ECD7; - --primary-cta: #7D1F2E; - --primary-cta-text: #F5ECD7; - --secondary-cta: #C9A050; - --secondary-cta-text: #1C0A0A; - --accent: #C9A050; - --background-accent: #8B4A0F; + --background: #2C2220; + --card: #382D2B; + --foreground: #E0DCD9; + --primary-cta: #B26B3F; + --primary-cta-text: #E0DCD9; + --secondary-cta: #4A3D39; + --secondary-cta-text: #E0DCD9; + --accent: #F5C7B0; + --background-accent: #5E4A44; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);