3 Commits

Author SHA1 Message Date
db601b5707 Update src/app/page.tsx 2025-12-20 15:17:16 +00:00
66753220f1 Update src/app/layout.tsx 2025-12-20 15:17:15 +00:00
7a380cccaf Update src/app/globals.css 2025-12-20 15:15:26 +00:00
3 changed files with 16 additions and 14 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #0a0a0a; --background: #f8fcff;
--card: #1a1a1a; --card: #ffffff;
--foreground: #e6f0ff; --foreground: #00101f;
--primary-cta: #3891f6; --primary-cta: #409fff;
--secondary-cta: #0e1a29; --secondary-cta: #ffffff;
--accent: #80bfff; --accent: #7cbdff;
--background-accent: #016ad3; --background-accent: #409fff;
/* 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-inter), 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-inter), sans-serif; font-family: var(--font-inter-tight), sans-serif;
} }

View File

@@ -46,10 +46,12 @@ export default function RootLayout({
<html lang="en" suppressHydrationWarning> <html lang="en" suppressHydrationWarning>
<ServiceWrapper> <ServiceWrapper>
<body <body
className={inter.variable} className={`${inter.variable} fixed inset-0 overflow-hidden`}
> >
<Tag /> <Tag />
{children} <div className="fixed inset-0 overflow-y-auto w-full">
{children}
</div>
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{

View File

@@ -26,7 +26,7 @@ export default function LandingPage() {
secondaryButtonStyle="solid" secondaryButtonStyle="solid"
headingFontWeight="semibold" headingFontWeight="semibold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav" className="relative z-50">
<NavbarStyleApple <NavbarStyleApple
logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242507065-3x0rfkp1.png" logoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766242507065-3x0rfkp1.png"
logoAlt="OddsPlay" logoAlt="OddsPlay"