19 Commits

Author SHA1 Message Date
fc6ed532ef Update src/app/globals.css 2025-12-30 21:08:25 +00:00
c39d1c225b Update src/app/globals.css 2025-12-30 21:01:04 +00:00
9ebd06153f Update src/app/globals.css 2025-12-30 20:53:51 +00:00
dd123aeaff Update src/app/page.tsx 2025-12-30 20:44:46 +00:00
4c6b6525b2 Update src/app/layout.tsx 2025-12-30 20:44:45 +00:00
1e9beedcb7 Update src/app/globals.css 2025-12-30 20:44:44 +00:00
f0840431ec Update src/app/globals.css 2025-12-30 20:33:22 +00:00
d442b27339 Update src/app/globals.css 2025-12-30 20:23:22 +00:00
21acf3992f Update src/app/globals.css 2025-12-30 20:21:14 +00:00
8b2b4af112 Update src/app/globals.css 2025-12-30 20:13:29 +00:00
3588f7ecf5 Update src/app/globals.css 2025-12-30 20:09:46 +00:00
7e0a593895 Update src/app/globals.css 2025-12-30 20:07:59 +00:00
bb976aedcf Update src/app/globals.css 2025-12-30 19:55:39 +00:00
df8652ee20 Update src/app/globals.css 2025-12-30 19:46:24 +00:00
32cd6f0cb9 Update src/app/globals.css 2025-12-30 19:18:21 +00:00
da50fa6c0f Update src/app/globals.css 2025-12-30 19:13:55 +00:00
6ec490b790 Update src/app/globals.css 2025-12-30 18:50:56 +00:00
d2b0ccb45f Update src/app/page.tsx 2025-12-30 18:45:20 +00:00
f984a05384 Update src/app/globals.css 2025-12-30 18:45:19 +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: #fbfaff;; --background: #0a0a0a;;
--card: #f7f5ff;; --card: #1a1a1a;;
--foreground: #0f0022;; --foreground: #fffffae6;;
--primary-cta: #8b5cf6;; --primary-cta: #fde047;;
--secondary-cta: #ffffff;; --secondary-cta: #1a1a1a;;
--accent: #d8cef5;; --accent: #737373;;
--background-accent: #c4a8f9;; --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

@@ -1266,4 +1266,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

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';
@@ -280,4 +280,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }