4 Commits

Author SHA1 Message Date
4baf6fea6a Merge version_2 into main
Merge version_2 into main
2025-12-25 13:15:01 +00:00
4583055aef Update src/app/page.tsx 2025-12-25 13:14:57 +00:00
f384d8cf89 Update src/app/layout.tsx 2025-12-25 13:14:56 +00:00
be14ef07e3 Update src/app/globals.css 2025-12-25 13:14:55 +00:00
3 changed files with 12 additions and 12 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #f1f9f5;; --background: #0a0a0a;
--card: #ebf5ef;; --card: #1a1a1a;
--foreground: #3f4a44;; --foreground: #fffef5e6;
--primary-cta: #9ed4b8;; --primary-cta: #facc15;
--secondary-cta: #ffffff;; --secondary-cta: #1a1a1a;
--accent: #93a887;; --accent: #737373;
--background-accent: #8bc4a5;; --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);
@@ -495,7 +495,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-open-sans), sans-serif; font-family: var(--font-inter-tight), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-open-sans), sans-serif; font-family: var(--font-inter-tight), sans-serif;
} }

View File

@@ -1276,4 +1276,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 NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
@@ -261,4 +261,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }