feat: move testimonials into hero section

This commit is contained in:
kudinDmitriyUp
2026-05-07 21:00:45 +00:00
parent 2440a28391
commit be309dfcbc

View File

@@ -2,8 +2,7 @@ import AboutFeaturesSplit from '@/components/sections/about/AboutFeaturesSplit';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm'; import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia'; import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
import FeaturesIconCards from '@/components/sections/features/FeaturesIconCards'; import FeaturesIconCards from '@/components/sections/features/FeaturesIconCards';
import TestimonialRatingCards from '@/components/sections/testimonial/TestimonialRatingCards'; import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import HeroBrand from '@/components/sections/hero/HeroBrand';
import MetricsGradientCards from '@/components/sections/metrics/MetricsGradientCards'; import MetricsGradientCards from '@/components/sections/metrics/MetricsGradientCards';
import ProductRatingCards from '@/components/sections/product/ProductRatingCards'; import ProductRatingCards from '@/components/sections/product/ProductRatingCards';
@@ -13,8 +12,9 @@ export default function HomePage() {
return ( return (
<> <>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBrand <HeroOverlayTestimonial
brand="Vine & Barrel" tag="What Our Patrons Say"
title="Vine & Barrel"
description="Crafting exceptional wines for generations, embodying the spirit of our land and the passion of our winemakers. Experience the artistry in every bottle." description="Crafting exceptional wines for generations, embodying the spirit of our land and the passion of our winemakers. Experience the artistry in every bottle."
primaryButton={{ primaryButton={{
text: "Explore Our Wines", text: "Explore Our Wines",
@@ -25,30 +25,25 @@ export default function HomePage() {
href: "#contact", href: "#contact",
}} }}
imageSrc="http://img.b2bpic.net/free-photo/person-picking-grapes-spending-time-vineyard_23-2151638420.jpg" imageSrc="http://img.b2bpic.net/free-photo/person-picking-grapes-spending-time-vineyard_23-2151638420.jpg"
/>
<TestimonialRatingCards
tag="What Our Patrons Say"
title="Voices of Delight"
description="Our wines have touched hearts and enriched palates. Read what our cherished customers have to say about their Vine & Barrel experience."
testimonials={[ testimonials={[
{ {
name: "Eleanor Vance", name: "Eleanor Vance",
role: "Wine Enthusiast", handle: "Wine Enthusiast",
quote: "The Heritage Cabernet Sauvignon is a masterpiece. Rich, complex, and absolutely unforgettable. Vine & Barrel truly sets the standard for quality.", text: "The Heritage Cabernet Sauvignon is a masterpiece. Rich, complex, and absolutely unforgettable. Vine & Barrel truly sets the standard for quality.",
rating: 5, rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/lady-with-wine_1157-7318.jpg", imageSrc: "http://img.b2bpic.net/free-photo/lady-with-wine_1157-7318.jpg",
}, },
{ {
name: "Marcus Thorne", name: "Marcus Thorne",
role: "Sommelier", handle: "Sommelier",
quote: "I'm consistently impressed by the depth and character of Vine & Barrel's portfolio. Their Estate Chardonnay is particularly remarkable, a true gem.", text: "I'm consistently impressed by the depth and character of Vine & Barrel's portfolio. Their Estate Chardonnay is particularly remarkable, a true gem.",
rating: 5, rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-wine-glass_23-2149428826.jpg", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-holding-wine-glass_23-2149428826.jpg",
}, },
{ {
name: "Isabelle Dubois", name: "Isabelle Dubois",
role: "Restaurateur", handle: "Restaurateur",
quote: "Serving Vine & Barrel wines has elevated our dining experience. Our guests frequently commend the exceptional quality and unique flavors.", text: "Serving Vine & Barrel wines has elevated our dining experience. Our guests frequently commend the exceptional quality and unique flavors.",
rating: 5, rating: 5,
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-with-red-hair-green-dress-smiling-holding-glass-sitting-with-positive-girl-t-shirt-skirt-outdoor_197531-24721.jpg", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-with-red-hair-green-dress-smiling-holding-glass-sitting-with-positive-girl-t-shirt-skirt-outdoor_197531-24721.jpg",
}, },