Merge version_2 into main #1
@@ -7,10 +7,10 @@ import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
|
||||
import ProductCardOne from "@/components/sections/product/ProductCardOne";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import TestimonialCardOne from "@/components/sections/testimonial/TestimonialCardOne";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import { Award, Camera, ChefHat, Home, Leaf, Phone, Sprout, Star, UtensilsCrossed, Users, Users2 } from "lucide-react";
|
||||
import { Award, Camera, ChefHat, Home, Leaf, Phone, Sprout, Star, UtensilsCrossed, Users, Users2, MapPin, Clock } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -143,23 +143,23 @@ export default function LandingPage() {
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardOne
|
||||
title="The Grove by Numbers"
|
||||
description="Nine years of excellence and memorable dining experiences"
|
||||
tag="Our Pride"
|
||||
tagIcon={Award}
|
||||
title="Hours & Location"
|
||||
description="Find us at our restaurant location and discover our operating hours"
|
||||
tag="Visit Us"
|
||||
tagIcon={Clock}
|
||||
tagAnimation="slide-up"
|
||||
metrics={[
|
||||
{
|
||||
id: "years", value: "9+", title: "Years Excellence", description: "Delivering culinary masterpieces since 2015", icon: Star
|
||||
id: "monday-thursday", value: "5PM - 11PM", title: "Monday - Thursday", description: "Perfect for weeknight dining experiences", icon: Clock
|
||||
},
|
||||
{
|
||||
id: "dishes", value: "150+", title: "Signature Dishes", description: "Carefully crafted menu items throughout the year", icon: UtensilsCrossed
|
||||
id: "friday-saturday", value: "5PM - 12AM", title: "Friday - Saturday", description: "Extended hours for weekend celebrations", icon: Star
|
||||
},
|
||||
{
|
||||
id: "guests", value: "50K+", title: "Happy Guests", description: "Satisfied diners from around the world", icon: Users
|
||||
id: "sunday", value: "5PM - 10PM", title: "Sunday Brunch & Dinner", description: "Family-friendly dining experience", icon: Users
|
||||
},
|
||||
{
|
||||
id: "team", value: "25", title: "Expert Staff", description: "Dedicated professionals ensuring your experience", icon: Users2
|
||||
id: "location", value: "123 Oak St", title: "Downtown Location", description: "Easily accessible with ample parking available", icon: MapPin
|
||||
}
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
@@ -170,18 +170,33 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardFifteen
|
||||
testimonial="An absolutely remarkable dining experience. Every dish was a masterpiece, and the service was impeccable. The Grove has become our favorite destination for special occasions."
|
||||
rating={5}
|
||||
author="Sarah Anderson"
|
||||
avatars={[
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5391.jpg", alt: "Sarah Anderson" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/positive-shaved-head-male-dressed-grey-suit-dark-grey-background_613910-11352.jpg", alt: "Michael Chen" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/portrait-beautiful-brunette-nurse-isolated-black_171337-5768.jpg", alt: "Emily Rodriguez" },
|
||||
{ src: "http://img.b2bpic.net/free-photo/cool-self-confident-man-checkered-jacket-white-t-shirt-looks-into-camera-bearded-guy-crosses-arms-poses-orange-wall_197531-23440.jpg", alt: "David Kim" }
|
||||
<TestimonialCardOne
|
||||
title="Guest Testimonials"
|
||||
description="Hear from our valued guests about their dining experiences"
|
||||
tag="5-Star Reviews"
|
||||
tagIcon={Star}
|
||||
tagAnimation="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "sarah-anderson", name: "Sarah Anderson", role: "Food Critic", company: "Dining Magazine", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-blonde-businesswoman-formal-dressed-isolated-dark-textured-background_613910-5391.jpg", imageAlt: "Sarah Anderson"
|
||||
},
|
||||
{
|
||||
id: "michael-chen", name: "Michael Chen", role: "Restaurant Owner", company: "Culinary Arts Association", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/positive-shaved-head-male-dressed-grey-suit-dark-grey-background_613910-11352.jpg", imageAlt: "Michael Chen"
|
||||
},
|
||||
{
|
||||
id: "emily-rodriguez", name: "Emily Rodriguez", role: "Event Planner", company: "Special Occasions Inc", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-brunette-nurse-isolated-black_171337-5768.jpg", imageAlt: "Emily Rodriguez"
|
||||
},
|
||||
{
|
||||
id: "david-kim", name: "David Kim", role: "Chef", company: "Michelin-Starred Dining", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/cool-self-confident-man-checkered-jacket-white-t-shirt-looks-into-camera-bearded-guy-crosses-arms-poses-orange-wall_197531-23440.jpg", imageAlt: "David Kim"
|
||||
}
|
||||
]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
@@ -190,7 +205,7 @@ export default function LandingPage() {
|
||||
<ContactCenter
|
||||
tag="Get in Touch"
|
||||
title="Reserve Your Table"
|
||||
description="Join us for an unforgettable culinary experience. Reserve your table today."
|
||||
description="Join us for an unforgettable culinary experience. Call us at (555) 123-4567 or reserve online below."
|
||||
tagIcon={Phone}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "radial-gradient" }}
|
||||
@@ -211,23 +226,23 @@ export default function LandingPage() {
|
||||
{ label: "Menu", href: "#features" },
|
||||
{ label: "Gallery", href: "#gallery" },
|
||||
{ label: "About Us", href: "#about" },
|
||||
{ label: "Contact", href: "#contact" }
|
||||
{ label: "Reservations", href: "#contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Hours", items: [
|
||||
title: "Hours of Operation", items: [
|
||||
{ label: "Monday - Thursday: 5PM - 11PM", href: "#" },
|
||||
{ label: "Friday - Saturday: 5PM - 12AM", href: "#" },
|
||||
{ label: "Sunday: 5PM - 10PM", href: "#" },
|
||||
{ label: "Closed Mondays", href: "#" }
|
||||
{ label: "Closed Selected Holidays", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Phone: (555) 123-4567", href: "#" },
|
||||
title: "Contact & Location", items: [
|
||||
{ label: "Phone: (555) 123-4567", href: "tel:(555)123-4567" },
|
||||
{ label: "Email: info@thegrove.com", href: "mailto:info@thegrove.com" },
|
||||
{ label: "123 Oak Street, Downtown", href: "#" },
|
||||
{ label: "Follow Us", href: "#" }
|
||||
{ label: "Parking Available", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user