5 Commits

Author SHA1 Message Date
bcec44601c Merge version_3 into main
Merge version_3 into main
2025-12-23 14:48:00 +00:00
14df921f1c Update src/app/page.tsx 2025-12-23 14:47:56 +00:00
d1c20d9b27 Update src/app/layout.tsx 2025-12-23 14:47:55 +00:00
10ace1fa02 Update src/app/globals.css 2025-12-23 14:47:55 +00:00
2ac106b040 Merge version_2 into main
Merge version_2 into main
2025-12-23 14:46:13 +00:00
3 changed files with 10 additions and 10 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #fffffae6;; --background: #000000;
--card: #fcfcfc;; --card: #1a1a1a;
--foreground: #121200e6;; --foreground: #ffffffe6;
--primary-cta: #ffcf40;; --primary-cta: #e6e6e6;
--secondary-cta: #ffffff;; --secondary-cta: #1a1a1a;
--accent: #e2e2e2;; --accent: #737373;
--background-accent: #c4c4c4;; --background-accent: #737373;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --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 { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';