Merge version_4_1782021616859 into main #3
@@ -15,12 +15,14 @@ import FaqSection from './HomePage/sections/Faq';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
|
||||
import GuaranteeSection from './HomePage/sections/Guarantee';export default function HomePage(): React.JSX.Element {
|
||||
import GuaranteeSection from './HomePage/sections/Guarantee';
|
||||
import ProductHeroSection from './HomePage/sections/ProductHero';export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<StyleProvider siteBackground="aurora" heroBackground="none" buttonVariant="arrow">
|
||||
<SiteBackgroundSlot />
|
||||
|
||||
<HeroSection />
|
||||
<ProductHeroSection />
|
||||
<GuaranteeSection />
|
||||
|
||||
<ServicesSection />
|
||||
|
||||
19
src/pages/HomePage/sections/ProductHero.tsx
Normal file
19
src/pages/HomePage/sections/ProductHero.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
// Created by add_section_from_catalog (HeroBillboard).
|
||||
|
||||
import React from 'react';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
|
||||
export default function ProductHeroSection(): React.JSX.Element {
|
||||
return (
|
||||
<div data-webild-section="product-hero" id="product-hero">
|
||||
<HeroBillboard
|
||||
primaryButton={{"text":"Shop All Products","href":"#contact"}}
|
||||
title="Our Products"
|
||||
secondaryButton={{"text":"Contact Sales","href":"#contact"}}
|
||||
tag="Products"
|
||||
description="Explore our full range of ergonomic solutions designed to relieve pain and improve your daily life."
|
||||
imageSrc=""
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
19
src/pages/HomePage/sections/Products.tsx
Normal file
19
src/pages/HomePage/sections/Products.tsx
Normal file
@@ -0,0 +1,19 @@
|
||||
// Created by add_section_from_catalog (HeroBillboard).
|
||||
|
||||
import React from 'react';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
|
||||
export default function ProductsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div data-webild-section="products" id="products">
|
||||
<HeroBillboard
|
||||
tag="Our Products"
|
||||
title="Explore Our Products"
|
||||
secondaryButton={{"text":"Learn More","href":"#contact"}}
|
||||
description="Discover our range of ergonomic solutions designed to relieve pain and improve your daily life."
|
||||
primaryButton={{"text":"Shop Now","href":"#products"}}
|
||||
imageSrc=""
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user