3 Commits

Author SHA1 Message Date
f040a7a868 Update src/app/globals.css 2025-12-23 16:43:02 +00:00
cc3d3acfcf Update src/app/page.tsx 2025-12-23 16:41:24 +00:00
8eb9727260 Update src/app/globals.css 2025-12-23 16:41:23 +00:00
2 changed files with 10 additions and 10 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #1a0f2e;;
--card: #2d1b47;;
--foreground: #f5f1fa;;
--primary-cta: #9d4edd;;
--secondary-cta: #1a0f2e;;
--accent: #c77dff;;
--background-accent: #7209b7;;
--background: #000602;
--card: #0d1d0d;
--foreground: #e6ffe6;
--primary-cta: #1cde5d;
--secondary-cta: #0a1f0f;
--accent: #2e6841;
--background-accent: #0d6b32;
/* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-noto-sans), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-noto-sans), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { Coffee, Facebook, Instagram, Twitter } from "lucide-react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';