5 Commits

Author SHA1 Message Date
3803e5f7fd Update src/app/page.tsx 2025-12-23 13:46:48 +00:00
7b701a9193 Update src/app/layout.tsx 2025-12-23 13:46:47 +00:00
512a9eb2e1 Update src/app/globals.css 2025-12-23 13:46:46 +00:00
8d5349308b Update src/app/page.tsx 2025-12-23 13:39:52 +00:00
03be42e990 Update src/app/globals.css 2025-12-23 13:39:51 +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: #fffafa;; --background: #fbfaff;
--card: #fff7f7;; --card: #f7f5ff;
--foreground: #1a0000;; --foreground: #0f0022;
--primary-cta: #e63946;; --primary-cta: #8b5cf6;
--secondary-cta: #ffffff;; --secondary-cta: #ffffff;
--accent: #f5c4c7;; --accent: #d8cef5;
--background-accent: #f09199;; --background-accent: #c4a8f9;
/* 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-public-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-public-sans), sans-serif; font-family: var(--font-inter-tight), sans-serif;
} }

View File

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

View File

@@ -1,4 +1,4 @@
"use client" "use client";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
@@ -392,4 +392,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }