Merge version_6_1782124600675 into main

Merge version_6_1782124600675 into main
This commit was merged in pull request #5.
This commit is contained in:
2026-06-22 10:38:54 +00:00
2 changed files with 58 additions and 75 deletions

View File

@@ -8,67 +8,64 @@ import { StyleProvider } from "@/components/ui/StyleProvider";
export default function Layout() {
const navItems = [
{
"name": "Home",
"href": "#hero"
},
{
"name": "Products",
"href": "#products"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Pricing",
"href": "#pricing"
},
{
"name": "Testimonials",
"href": "#testimonials"
},
{
"name": "Faq",
"href": "#faq"
}
];
{
"name": "Home",
"href": "#hero"
},
{
"name": "Products",
"href": "#products"
},
{
"name": "Contact",
"href": "#contact"
},
{
"name": "About",
"href": "#about"
},
{
"name": "Pricing",
"href": "#pricing"
},
{
"name": "Faq",
"href": "#faq"
}
];
return (
<StyleProvider buttonVariant="expand" siteBackground="noise" heroBackground="cornerGlow">
<SiteBackgroundSlot />
<SectionErrorBoundary name="navbar">
<NavbarFloating
logo="Comet Paints and Allied Products"
ctaButton={{
text: "Order Now",
href: "#contact",
}}
navItems={navItems} />
logo="Comet Paints and Allied Products"
ctaButton={{
text: "Order Now",
href: "#contact",
}}
navItems={navItems}
/>
</SectionErrorBoundary>
<main className="flex-grow">
<Outlet />
</main>
<SectionErrorBoundary name="footer">
<FooterMinimal
brand="Comet Paints and Allied Products"
copyright="© 2024 Comet Paints and Allied Products. All rights reserved."
socialLinks={[
{
icon: Instagram,
href: "#",
},
{
icon: Facebook,
href: "#",
},
]}
/>
brand="Comet Paints and Allied Products"
copyright=2006-2024 Comet Paints and Allied Products. All rights reserved."
socialLinks={[
{
icon: Instagram,
href: "#",
},
{
icon: Facebook,
href: "#",
},
]}
/>
</SectionErrorBoundary>
</StyleProvider>
);
}
}

View File

@@ -1,38 +1,24 @@
// AUTO-GENERATED shell by per-section-migrate.
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
// files directly. Non-block content (wrappers, non-inlinable sections) is
// preserved inline; extracted section blocks become <XSection/> refs.
import React from 'react';
import HeroSection from './HomePage/sections/Hero';
import AboutSection from './HomePage/sections/About';
import ProductsSection from './HomePage/sections/Products';
import PricingSection from './HomePage/sections/Pricing';
import TestimonialsSection from './HomePage/sections/Testimonials';
import FaqSection from './HomePage/sections/Faq';
import SocialProofSection from './HomePage/sections/SocialProof';
import ContactSection from './HomePage/sections/Contact';
import GallerySection from './HomePage/sections/Gallery';
import GallerySection from './HomePage/sections/Gallery';export default function HomePage(): React.JSX.Element {
export default function HomePage(): React.JSX.Element {
return (
<>
<HeroSection />
<AboutSection />
<ProductsSection />
<PricingSection />
<TestimonialsSection />
<FaqSection />
<SocialProofSection />
<ContactSection />
<GallerySection />
<>
<HeroSection />
<AboutSection />
<ProductsSection />
<PricingSection />
<FaqSection />
<SocialProofSection />
<ContactSection />
<GallerySection />
</>
);
}
}