13 Commits

Author SHA1 Message Date
6b571e5497 Update src/app/page.tsx 2025-12-28 14:23:19 +00:00
c604dbbe29 Update src/app/layout.tsx 2025-12-28 14:23:18 +00:00
fcf41ae025 Update src/app/globals.css 2025-12-28 14:23:17 +00:00
fafeb0ec7a Update src/app/page.tsx 2025-12-28 03:26:11 +00:00
bc91b47822 Update src/app/page.tsx 2025-12-28 03:07:07 +00:00
cab0df2390 Update src/app/layout.tsx 2025-12-28 03:07:06 +00:00
4d2e33c122 Update src/app/page.tsx 2025-12-28 03:05:16 +00:00
38b5788f07 Update src/app/layout.tsx 2025-12-28 03:05:15 +00:00
9620d9d66a Update src/app/page.tsx 2025-12-28 03:03:01 +00:00
05d820609a Update src/app/page.tsx 2025-12-28 03:01:45 +00:00
c86fb4ef82 Update src/app/page.tsx 2025-12-28 03:00:17 +00:00
4636f764b0 Update src/app/layout.tsx 2025-12-28 03:00:16 +00:00
81b2de936c Update src/app/globals.css 2025-12-28 02:47:55 +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: #080000;
--card: #1e0d0d;
--foreground: #ffe6e6;
--primary-cta: #ff7a7a;
--secondary-cta: #1e0909;
--accent: #7b4242;
--background-accent: #65292c;
--background: #0a0a0a;
--card: #1a1a1a;
--foreground: #fffffae6;
--primary-cta: #fde047;
--secondary-cta: #1a1a1a;
--accent: #737373;
--background-accent: #737373;
/* 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 NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';