diff --git a/src/app/page.tsx b/src/app/page.tsx index 468d622..3f6fda0 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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" /> @@ -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() { @@ -103,6 +114,8 @@ export default function LandingPage() { @@ -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() {
- +