Merge version_3 into main #4

Merged
bender merged 1 commits from version_3 into main 2026-04-18 07:25:00 +00:00

View File

@@ -2,7 +2,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import { Zap, MapPin, Phone, Mail } from "lucide-react";
import { Zap } from "lucide-react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FaqBase from '@/components/sections/faq/FaqBase';
import FeatureCardNine from '@/components/sections/feature/FeatureCardNine';
@@ -49,7 +49,11 @@ export default function LandingPage() {
title="Authentic Georgian Flavors"
description="Discover the rich tradition of Caucasian cuisine in the heart of Brooklyn."
dashboard={{
title: "Argo Experience", stats: [{ title: "Authentic Recipes", values: [50, 0, 0], description: "Traditional dishes" }, { title: "Satisfied Guests", values: [1000, 0, 0], description: "Happy diners" }],
title: "Argo Experience", stats: [
{ title: "Authentic Recipes", values: [50, 0, 0], description: "Traditional dishes" },
{ title: "Satisfied Guests", values: [1000, 0, 0], description: "Happy diners" },
{ title: "Local Favorites", values: [25, 0, 0], description: "Top rated meals" }
],
logoIcon: Zap,
sidebarItems: [{ icon: Zap, active: true }],
listItems: [{ icon: Zap, title: "Fresh Khinkali", status: "Served Daily" }],
@@ -63,6 +67,7 @@ export default function LandingPage() {
title="Our Heritage"
description="Argo represents generations of culinary expertise from Georgia."
metrics={[{ value: "15+", title: "Years Experience" }, { value: "50+", title: "Recipes" }]}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/vertical-shot-plate-glass-napkin-table_181624-44748.jpg"
/>
</div>
@@ -73,6 +78,8 @@ export default function LandingPage() {
description="Authentic flavors, cozy atmosphere, and the finest ingredients."
showStepNumbers={true}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{ title: "Handmade Khinkali", description: "Traditional delicate folds.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/plate-georgian-khinkali-served-with-tomato-paste-wine_140725-10703.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/plate-georgian-khinkali-served-with-tomato-paste-wine_140725-10703.jpg" } },
{ title: "Golden Khachapuri", description: "Oven-fresh cheesy delight.", phoneOne: { imageSrc: "http://img.b2bpic.net/free-photo/front-view-tasty-egg-bread-baked-grey-rustic-desk_140725-79489.jpg" }, phoneTwo: { imageSrc: "http://img.b2bpic.net/free-photo/front-view-tasty-egg-bread-baked-grey-rustic-desk_140725-79489.jpg" } }
@@ -85,6 +92,8 @@ export default function LandingPage() {
title="Signature Menu"
gridVariant="asymmetric-60-wide-40-narrow"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
products={[
{ id: "1", brand: "Traditional", name: "Khinkali", price: "$12", rating: 5, reviewCount: "200", imageSrc: "http://img.b2bpic.net/free-photo/top-view-raw-little-dumplings-gray-table-dough-meal-cake-dinner-cuisine-cooking-dish_179666-17907.jpg" }
]}
@@ -95,6 +104,8 @@ export default function LandingPage() {
<MetricCardEleven
title="By The Numbers"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
metrics={[{ id: "1", value: "500+", title: "Reviews", description: "Our guests love us", imageSrc: "http://img.b2bpic.net/free-vector/half-shadow-stars-with-check-marks_78370-4475.jpg" }]}
/>
</div>
@@ -103,6 +114,8 @@ export default function LandingPage() {
<TeamCardFive
title="Meet Our Chefs"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
team={[{ id: "1", name: "Giorgi", role: "Head Chef", imageSrc: "http://img.b2bpic.net/free-photo/fashionable-hipster-guy-sitting-with-woman-cafe_273609-6829.jpg" }]}
/>
</div>
@@ -112,6 +125,8 @@ export default function LandingPage() {
title="What Guests Say"
description="Authentic experiences that keep them returning."
useInvertedBackground={true}
animationType="slide-up"
textboxLayout="default"
kpiItems={[{ value: "4.9", label: "Average Rating" }, { value: "1k", label: "Happy Guests" }, { value: "50", label: "Traditional Dishes" }]}
testimonials={[{ id: "1", name: "Anna", role: "Local", company: "Brooklyn", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-standing-counter_1170-668.jpg" }]}
/>
@@ -121,26 +136,37 @@ export default function LandingPage() {
<FaqBase
title="Common Questions"
faqsAnimation="slide-up"
textboxLayout="default"
useInvertedBackground={false}
faqs={[{ id: "1", title: "Do you take reservations?", content: "Yes, we recommend booking in advance." }]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
tag="Contact"
title="Find Us"
description="1985 Coney Island Ave, Brooklyn."
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-photo/group-young-friends-having-wine-together_23-2148454148.jpg"
/>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne names={["Eater", "TimeOut", "The Infatuation", "Brooklyn Magazine"]} title="Featured In" />
<SocialProofOne
names={["Eater", "TimeOut", "The Infatuation", "Brooklyn Magazine"]}
title="Featured In"
description="Media coverage"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="Argo"
columns={[{ items: [{ label: "Home" }, { label: "Contact" }] }]}
columns={[{ items: [{ label: "Home", href: "#hero" }, { label: "Contact", href: "#contact" }] }]}
/>
</div>
</ReactLenis>