From a8bbb67ca73547d18698ccd91514edb23fe3f810 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 19:45:16 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 101 ++++++++++++++++------------------------- 1 file changed, 39 insertions(+), 62 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 409966c..04bbd1e 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -2,14 +2,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; -import FooterCard from '@/components/sections/footer/FooterCard'; -import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout'; +import FooterCard from '@/components/sections/footer/FooterCard'; import { Instagram, Twitter } from "lucide-react"; -export default function AboutPage() { +export default function AboutUsPage() { return ( - + -
- -
+
+ +
-
- -
- -
- -
- - +
); -- 2.49.1 From 6f792864f8854af5c39456ad6c14cb047d6ae613 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 19:45:17 +0000 Subject: [PATCH 2/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 94 +++++++++++++--------------------------- 1 file changed, 29 insertions(+), 65 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index c652cda..5ae1eaf 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,11 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; -import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; -import FooterCard from '@/components/sections/footer/FooterCard'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import ContactCenter from '@/components/sections/contact/ContactCenter'; +import FooterCard from '@/components/sections/footer/FooterCard'; import { Instagram, Twitter } from "lucide-react"; export default function ContactPage() { @@ -24,68 +22,34 @@ export default function ContactPage() { headingFontWeight="bold" > - + + + -
- -
- -
- -
- -
- -
- - +
); -- 2.49.1 From f6f27e104f18934c578e2259d19d96e24ddfb072 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 19:45:17 +0000 Subject: [PATCH 3/4] Update src/app/lookbook/page.tsx --- src/app/lookbook/page.tsx | 118 +++++++++++++++----------------------- 1 file changed, 45 insertions(+), 73 deletions(-) diff --git a/src/app/lookbook/page.tsx b/src/app/lookbook/page.tsx index ca47093..56f5fb6 100644 --- a/src/app/lookbook/page.tsx +++ b/src/app/lookbook/page.tsx @@ -2,11 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; -import FooterCard from '@/components/sections/footer/FooterCard'; import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; -import ProductCardFour from '@/components/sections/product/ProductCardFour'; -import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; +import FooterCard from '@/components/sections/footer/FooterCard'; +import FeatureCardOne from '@/components/sections/feature/FeatureCardOne'; import { Instagram, Twitter } from "lucide-react"; export default function LookbookPage() { @@ -24,78 +22,52 @@ export default function LookbookPage() { headingFontWeight="bold" > - + - +
+

Lookbook

+

Explore our latest collections captured in the wild.

+
-
- -
+
+ +
-
- -
- - +
); -- 2.49.1 From 6fa7874cc6108f2209e5b6888fb204c9be75ab05 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 21 Apr 2026 19:45:18 +0000 Subject: [PATCH 4/4] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index b7afc67..8d47b20 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f5f4ef; - --card: #dad6cd; - --foreground: #2a2928; - --primary-cta: #2a2928; + --background: #f0f8ff; + --card: #e0f2f7; + --foreground: #001a33; + --primary-cta: #0077be; --primary-cta-text: #f5f4ef; - --secondary-cta: #ecebea; + --secondary-cta: #b3e0ff; --secondary-cta-text: #2a2928; - --accent: #ffffff; - --background-accent: #c6b180; + --accent: #00a8cc; + --background-accent: #005a8d; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); -- 2.49.1