5 Commits

Author SHA1 Message Date
cb1433645f Update src/app/page.tsx 2025-12-27 05:15:55 +00:00
4f85ba4e47 Update src/app/page.tsx 2025-12-27 05:12:15 +00:00
0c17216b5f Update src/app/page.tsx 2025-12-27 05:10:24 +00:00
30206395bb Update src/app/page.tsx 2025-12-27 05:08:28 +00:00
a5f9f39e8c Update src/app/globals.css 2025-12-27 05:08:27 +00:00
2 changed files with 10 additions and 14 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */
/* --vw is set by ThemeProvider */
--background: #f8fcff;;
--card: #ffffff;;
--foreground: #00101f;;
--primary-cta: #409fff;;
--secondary-cta: #ffffff;;
--accent: #c7e2fc;;
--background-accent: #9bcfff;;
--background: #f8fcff;
--card: #ffffff;
--foreground: #00101f;
--primary-cta: #409fff;
--secondary-cta: #ffffff;
--accent: #c7e2fc;
--background-accent: #9bcfff;
/* 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-inter), 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-inter), sans-serif;
font-family: var(--font-inter-tight), sans-serif;
}

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
@@ -29,10 +29,6 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleMinimal
brandName="FitCore Gym"
button={{
text: "Join Now",
href: "#pricing"
}}
/>
</div>