From fcf41ae0252525bf1f2a6e69e286bc12f7130f4e Mon Sep 17 00:00:00 2001 From: development Date: Sun, 28 Dec 2025 14:23:17 +0000 Subject: [PATCH 1/3] Update src/app/globals.css --- src/app/globals.css | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/app/globals.css b/src/app/globals.css index 76d5bec..f04bcef 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -4,13 +4,13 @@ /* Base units */ /* --vw is set by ThemeProvider */ - --background: #ffffff; - --card: #fafafa; - --foreground: #000000; - --primary-cta: #ffcc00; - --secondary-cta: #ffffff; - --accent: #e5e5e5; - --background-accent: #f5f5f5; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #fffffae6; + --primary-cta: #fde047; + --secondary-cta: #1a1a1a; + --accent: #737373; + --background-accent: #737373; /* 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-tight), sans-serif; + font-family: var(--font-ibm-plex-sans), sans-serif; position: relative; min-height: 100vh; overscroll-behavior: none; @@ -508,5 +508,5 @@ h3, h4, h5, h6 { - font-family: var(--font-inter-tight), sans-serif; + font-family: var(--font-ibm-plex-sans), sans-serif; } \ No newline at end of file From c604dbbe295cc5e12947260dafa77e4404679804 Mon Sep 17 00:00:00 2001 From: development Date: Sun, 28 Dec 2025 14:23:18 +0000 Subject: [PATCH 2/3] Update src/app/layout.tsx --- src/app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index fbf0f58..a0610a3 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1273,4 +1273,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} From 6b571e5497f325c89db8bac50caf91921cde8950 Mon Sep 17 00:00:00 2001 From: development Date: Sun, 28 Dec 2025 14:23:19 +0000 Subject: [PATCH 3/3] Update src/app/page.tsx --- src/app/page.tsx | 206 +++++++++++++++++++++++++---------------------- 1 file changed, 109 insertions(+), 97 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index cb5099e..2359232 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -1,149 +1,143 @@ "use client"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import HeroBillboard from "@/components/sections/hero/HeroBillboard"; -import ProductCardOne from "@/components/sections/product/ProductCardOne"; -import MediaSplitTabsAbout from "@/components/sections/about/MediaSplitTabsAbout"; -import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; -import ContactSplit from "@/components/sections/contact/ContactSplit"; -import FooterSocial from "@/components/sections/footer/FooterSocial"; +import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal'; +import HeroBillboardMetrics from '@/components/sections/hero/HeroBillboardMetrics'; +import ProductCardSix from '@/components/sections/product/ProductCardSix'; +import TextAbout from '@/components/sections/about/TextAbout'; +import FeatureCardEight from '@/components/sections/feature/FeatureCardEight'; +import ContactSplit from '@/components/sections/contact/ContactSplit'; +import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; export default function LandingPage() { return (
-
-
-
@@ -153,45 +147,63 @@ export default function LandingPage() { tag="Get Started" title="Ready to bring your vision to life?" description="Interested in collaborating on your next 3D project? Reach out directly or subscribe for updates on my latest work." - useInvertedBackground="noInvert" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888725581-tp75ftz7.jpg" imageAlt="Contact section" mediaPosition="right" inputPlaceholder="your@email.com" buttonText="Subscribe" termsText="We respect your privacy. Unsubscribe anytime." + useInvertedBackground="noInvert" />
); -} \ No newline at end of file +}