2 Commits

Author SHA1 Message Date
cb9264fc89 Update src/app/page.tsx 2025-12-29 11:11:01 +00:00
a19de222cc Update src/app/globals.css 2025-12-29 11:11:00 +00:00
2 changed files with 8 additions and 8 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #060200;;
--card: #1d0d0b;;
--foreground: #ffe6d5;;
--primary-cta: #ff8c42;;
--secondary-cta: #1f0a00;;
--accent: #7b5337;;
--background-accent: #b8400c;;
--background: #f8fcff;;
--card: #ffffff;;
--foreground: #00101f;;
--primary-cta: #409fff;;
--secondary-cta: #ffffff;;
--accent: #c7e2fc;;
--background-accent: #9bcfff;;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';