Switch to version 2: modified src/pages/HomePage.tsx

This commit is contained in:
2026-05-05 21:56:44 +00:00
parent 43320531f2
commit b07a79488b

View File

@@ -1,5 +1,6 @@
import AboutTestimonial from '@/components/sections/about/AboutTestimonial';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FeaturesImageCards from '@/components/sections/features/FeaturesImageCards';
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
import MetricsGradientCards from '@/components/sections/metrics/MetricsGradientCards';
import ProductImageCards from '@/components/sections/product/ProductImageCards';
@@ -57,28 +58,28 @@ export default function HomePage() {
</div>
<div id="features" data-section="features">
<FeaturesCards
tag="Our Craft"
title="The Art of Winemaking"
description="Our commitment to excellence is evident in every step, from vineyard to bottle, ensuring a wine of unparalleled character and quality."
features={[
{
name: "Sustainable Practices",
description: "We employ eco-friendly methods to preserve our land for future generations.",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-hand-holding-plant_23-2149011830.jpg",
},
{
name: "Artisanal Fermentation",
description: "Small-batch fermentation enhances the unique flavors of each varietal.",
imageSrc: "http://img.b2bpic.net/free-photo/wine-cellar-with-wooden-barrels_23-2149011831.jpg",
},
{
name: "Expert Blending",
description: "Our winemakers meticulously blend to achieve perfect balance and complexity.",
imageSrc: "http://img.b2bpic.net/free-photo/man-tasting-wine-cellar_23-2149011832.jpg",
},
]}
/>
<FeaturesImageCards
tag="Our Craft"
title="The Art of Vino Estate"
description="Experience the dedication and expertise behind every bottle, from sustainable vineyard practices to meticulous aging."
features={[
{
title: "Sustainable Cultivation",
description: "We honor our land with eco-friendly practices, ensuring vibrant grapes and a thriving ecosystem for future generations.",
imageSrc: "http://img.b2bpic.net/free-photo/bunch-grapes-vineyard_1398-2095.jpg",
},
{
title: "Traditional Barrel Aging",
description: "Our wines mature gracefully in French oak barrels, imparting complex notes and a velvety smooth finish.",
imageSrc: "http://img.b2bpic.net/free-photo/barrels-cellar_1398-2096.jpg",
},
{
title: "Curated Tasting Experiences",
description: "Join us for an unforgettable journey through our varietals, expertly guided by our sommeliers.",
imageSrc: "http://img.b2bpic.net/free-photo/waiter-serving-wine-restaurant_1098-15549.jpg",
},
]}
/>
</div>
<div id="wines" data-section="wines">
@@ -122,7 +123,7 @@ export default function HomePage() {
</div>
<div id="experience" data-section="experience">
<ProductCards
<ProductImageCards
tag="Exclusive Access"
title="Join Our Wine Club"
description="Elevate your wine experience with curated selections, exclusive releases, and special member benefits."
@@ -130,7 +131,7 @@ export default function HomePage() {
{
name: "Enthusiast",
description: "Perfect for discovering new favorites and enjoying regular shipments. Includes 2 bottles quarterly, 10% off all purchases, and priority access to new releases.",
imageSrc: "http://img.b2bpic.net/free-photo/wine-bottles-cellar_1398-2097.jpg?_wi=2",
imageSrc: "http://img.b2bpic.net/free-photo/wine-bottles-cellar_1398-2097.jpg",
button: {
text: "Join Enthusiast",
href: "#",
@@ -311,6 +312,3 @@ export default function HomePage() {
</>
);
}
import FeaturesMediaCards from '@/components/sections/features/FeaturesMediaCards';
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';