From e530b9668939eedf0686449668f65069a67f88cb Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 19:29:23 +0000 Subject: [PATCH 1/7] =?UTF-8?q?Bob=20AI:=20Updated=20layout=20with=20IMORA?= =?UTF-8?q?=20B=C3=88AUTY=20branding=20and=20links?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Layout.tsx | 34 ++--- src/pages/HomePage.tsx | 152 ++++------------------- src/pages/HomePage/sections/About.tsx | 20 +++ src/pages/HomePage/sections/Benefits.tsx | 42 +++++++ src/pages/HomePage/sections/Contact.tsx | 19 +++ src/pages/HomePage/sections/Faq.tsx | 36 ++++++ src/pages/HomePage/sections/Hero.tsx | 19 +++ src/pages/HomePage/sections/Products.tsx | 34 +++++ src/pages/HomePage/sections/Reviews.tsx | 23 ++++ 9 files changed, 231 insertions(+), 148 deletions(-) create mode 100644 src/pages/HomePage/sections/About.tsx create mode 100644 src/pages/HomePage/sections/Benefits.tsx create mode 100644 src/pages/HomePage/sections/Contact.tsx create mode 100644 src/pages/HomePage/sections/Faq.tsx create mode 100644 src/pages/HomePage/sections/Hero.tsx create mode 100644 src/pages/HomePage/sections/Products.tsx create mode 100644 src/pages/HomePage/sections/Reviews.tsx diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 05a701c..8de576d 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -10,38 +10,38 @@ export default function Layout() {
diff --git a/src/pages/HomePage.tsx b/src/pages/HomePage.tsx index 7792c98..cceae4d 100644 --- a/src/pages/HomePage.tsx +++ b/src/pages/HomePage.tsx @@ -1,149 +1,39 @@ -import { Leaf, Droplets, Sprout, Wind, Globe, Truck, Package } from "lucide-react"; +// AUTO-GENERATED shell by per-section-migrate. +// Section bodies live in .//sections/.tsx. Edit the section +// files directly. Non-block content (wrappers, non-inlinable sections) is +// preserved inline; extracted section blocks become refs. + import { StyleProvider } from "@/components/ui/StyleProvider"; import SiteBackgroundSlot from "@/components/ui/SiteBackgroundSlot"; -import HeroBillboardBrand from "@/components/sections/hero/HeroBillboardBrand"; -import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; -import ProductMediaCards from "@/components/sections/product/ProductMediaCards"; -import FeaturesBento from "@/components/sections/features/FeaturesBento"; -import TestimonialTrustCard from "@/components/sections/testimonial/TestimonialTrustCard"; -import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; +import React from 'react'; +import HeroSection from './HomePage/sections/Hero'; +import AboutSection from './HomePage/sections/About'; +import ProductsSection from './HomePage/sections/Products'; +import BenefitsSection from './HomePage/sections/Benefits'; +import ReviewsSection from './HomePage/sections/Reviews'; +import FaqSection from './HomePage/sections/Faq'; +import ContactSection from './HomePage/sections/Contact'; -export default function HomePage() { +export default function HomePage(): React.JSX.Element { return ( -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+ -
- -
+
diff --git a/src/pages/HomePage/sections/About.tsx b/src/pages/HomePage/sections/About.tsx new file mode 100644 index 0000000..992efd4 --- /dev/null +++ b/src/pages/HomePage/sections/About.tsx @@ -0,0 +1,20 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "about" section. + +import React from 'react'; +import AboutTextSplit from "@/components/sections/about/AboutTextSplit"; + +export default function AboutSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Benefits.tsx b/src/pages/HomePage/sections/Benefits.tsx new file mode 100644 index 0000000..402d682 --- /dev/null +++ b/src/pages/HomePage/sections/Benefits.tsx @@ -0,0 +1,42 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "benefits" section. + +import React from 'react'; +import { Leaf, Droplets, Sprout, Wind, Globe, Truck, Package } from "lucide-react"; +import FeaturesBento from "@/components/sections/features/FeaturesBento"; + +export default function BenefitsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Contact.tsx b/src/pages/HomePage/sections/Contact.tsx new file mode 100644 index 0000000..bc22232 --- /dev/null +++ b/src/pages/HomePage/sections/Contact.tsx @@ -0,0 +1,19 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "contact" section. + +import React from 'react'; +import ContactCenter from "@/components/sections/contact/ContactCenter"; + +export default function ContactSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Faq.tsx b/src/pages/HomePage/sections/Faq.tsx new file mode 100644 index 0000000..6ac33e7 --- /dev/null +++ b/src/pages/HomePage/sections/Faq.tsx @@ -0,0 +1,36 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "faq" section. + +import React from 'react'; +import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; + +export default function FaqSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx new file mode 100644 index 0000000..098d724 --- /dev/null +++ b/src/pages/HomePage/sections/Hero.tsx @@ -0,0 +1,19 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "hero" section. + +import React from 'react'; +import HeroBillboardBrand from "@/components/sections/hero/HeroBillboardBrand"; + +export default function HeroSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Products.tsx b/src/pages/HomePage/sections/Products.tsx new file mode 100644 index 0000000..e6688d5 --- /dev/null +++ b/src/pages/HomePage/sections/Products.tsx @@ -0,0 +1,34 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "products" section. + +import React from 'react'; +import ProductMediaCards from "@/components/sections/product/ProductMediaCards"; + +export default function ProductsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} diff --git a/src/pages/HomePage/sections/Reviews.tsx b/src/pages/HomePage/sections/Reviews.tsx new file mode 100644 index 0000000..d9b8a00 --- /dev/null +++ b/src/pages/HomePage/sections/Reviews.tsx @@ -0,0 +1,23 @@ +// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this +// file as the canonical source for the "reviews" section. + +import React from 'react'; +import TestimonialTrustCard from "@/components/sections/testimonial/TestimonialTrustCard"; + +export default function ReviewsSection(): React.JSX.Element { + return ( +
+ +
+ ); +} -- 2.49.1 From 816ebeca0fd2fd17d5eb803b9c108a55fa5f2f19 Mon Sep 17 00:00:00 2001 From: kudinDmitriyUp Date: Sun, 21 Jun 2026 19:30:36 +0000 Subject: [PATCH 2/7] =?UTF-8?q?Bob=20AI:=20Updated=20hero=20section=20with?= =?UTF-8?q?=20IMORA=20B=C3=88AUTY=20branding=20and=20full-scr?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/HomePage/sections/Hero.tsx | 97 ++++++++++++++++++++++++---- 1 file changed, 83 insertions(+), 14 deletions(-) diff --git a/src/pages/HomePage/sections/Hero.tsx b/src/pages/HomePage/sections/Hero.tsx index 098d724..b547b6e 100644 --- a/src/pages/HomePage/sections/Hero.tsx +++ b/src/pages/HomePage/sections/Hero.tsx @@ -1,19 +1,88 @@ -// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this -// file as the canonical source for the "hero" section. +/* eslint-disable */ +// @ts-nocheck — generated by catalog-eject; runtime-correct but TS strict-mode false-positives on inlined catalog body +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import AutoFillText from "@/components/ui/AutoFillText"; +import ScrollReveal from "@/components/ui/ScrollReveal"; -import React from 'react'; -import HeroBillboardBrand from "@/components/sections/hero/HeroBillboardBrand"; +const primaryButton = { + text: "Call Us", + href: "tel:5551234567" +}; +const secondaryButton = { + text: "Email Us", + href: "mailto:hello@lumine.com" +}; -export default function HeroSection(): React.JSX.Element { +type HeroBillboardBrandProps = { + brand: string; + description: string; + primaryButton: { text: string; href: string }; + secondaryButton: { text: string; href: string }; +} & ({ imageSrc: string; videoSrc?: never } | { videoSrc: string; imageSrc?: never }); + +const HeroInline = () => { return ( -
- -
+
+
+ Luxury Beauty +
+
+ +
+

+ IMORA +

+
+ +
+

+ BEAUTY WITHOUT LIMITS +

+

+ Discover curated luxury cosmetics, skincare, and beauty essentials designed to celebrate confidence, individuality, and self-expression. +

+ + +
+ +
+
+ {[...Array(4)].map((_, i) => ( + + ✨ Luxury Beauty • Makeup Essentials • Glow Beyond Limits • Beauty For Every Shade • Curated With Love + + ))} +
+
+ +