From 1b68b7f140ca07f60a4d27b43f26d42585c229b4 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Fri, 27 Mar 2026 13:36:35 +0000 Subject: [PATCH 1/4] Bob AI: fix build error in src/app/about/page.tsx --- src/app/about/page.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 17dbe47..b8a0984 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -55,6 +55,20 @@ export default function LandingPage() { imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AJb0zJP2EWyuYlH5wmRP5jjTA5/artistic-close-up-shot-of-lace-detail-on-1774618525645-fb0f2f0f.png" videoSrc="https://www.w3schools.com/howto/mov_bbb.mp4?_wi=2" mediaAnimation="slide-up" + bulletPoints={[ + { + title: "Exquisite Craftsmanship", + description: "Every piece is a testament to our dedication to quality, using only the finest materials.", + }, + { + title: "Sustainable Practices", + description: "We are committed to ethical sourcing and environmentally friendly production processes.", + }, + { + title: "Empowering Confidence", + description: "Our designs are created to make you feel beautiful, confident, and comfortable in your own skin.", + }, + ]} /> @@ -64,6 +78,12 @@ export default function LandingPage() { title="Our Values" tag="Integrity" metricsAnimation="slide-up" + metrics={[ + { value: "98%", label: "Customer Satisfaction" }, + { value: "50+", label: "Unique Designs" }, + { value: "100%", label: "Ethically Sourced Materials" }, + { value: "1M+", label: "Happy Customers" }, + ]} /> -- 2.49.1 From c0ddfb211ed7d7d720bd1d6afe825682ce27959f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 13:36:47 +0000 Subject: [PATCH 2/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 115 +++++++++++++++++------------------------ 1 file changed, 46 insertions(+), 69 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index b8a0984..dd14288 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -7,7 +7,7 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import SplitAbout from '@/components/sections/about/SplitAbout'; -export default function LandingPage() { +export default function AboutPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From 310885408a627716b254fadbc1a44cad1c603c9d Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 13:36:47 +0000 Subject: [PATCH 3/4] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 87 +++++++++++++++++++--------------------- 1 file changed, 42 insertions(+), 45 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 01a42bc..29bef52 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -7,7 +7,7 @@ import FooterCard from '@/components/sections/footer/FooterCard'; import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; -export default function LandingPage() { +export default function ContactPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1 From cc123851daf79b610e9e6e20b55cb426879072df Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 27 Mar 2026 13:36:47 +0000 Subject: [PATCH 4/4] Update src/app/shop/page.tsx --- src/app/shop/page.tsx | 92 +++++++++++++++++++++---------------------- 1 file changed, 45 insertions(+), 47 deletions(-) diff --git a/src/app/shop/page.tsx b/src/app/shop/page.tsx index 0c34375..d747b67 100644 --- a/src/app/shop/page.tsx +++ b/src/app/shop/page.tsx @@ -7,7 +7,7 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import PricingCardNine from '@/components/sections/pricing/PricingCardNine'; -export default function LandingPage() { +export default function ShopPage() { return ( - + -
- -
+
+ +
-
- -
+
+ +
- +
); -- 2.49.1