Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fed50e4279 | |||
| 203da036f3 | |||
| 0e1a9ce1e9 | |||
| e0d1ec0ce5 |
176
src/app/page.tsx
176
src/app/page.tsx
@@ -31,25 +31,15 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Cuisine",
|
name: "Cuisine", id: "features"},
|
||||||
id: "features",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Reviews",
|
name: "Reviews", id: "testimonials"},
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="ГРУЗИНКА"
|
brandName="ГРУЗИНКА"
|
||||||
/>
|
/>
|
||||||
@@ -58,61 +48,38 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroSplit
|
<HeroSplit
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Authentic Georgia in the Heart of Samarkand"
|
title="Authentic Georgia in the Heart of Samarkand"
|
||||||
description="Experience soulful Georgian cuisine, warm hospitality, and an elegant atmosphere that makes every guest feel like family."
|
description="Experience soulful Georgian cuisine, warm hospitality, and an elegant atmosphere that makes every guest feel like family."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Reserve Your Table",
|
text: "Reserve Your Table", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/catering-tablecloth-plate-drink-background_1203-5091.jpg?_wi=1"
|
imageSrc="http://img.b2bpic.net/free-photo/catering-tablecloth-plate-drink-background_1203-5091.jpg?_wi=1"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/bowl-french-dessert-garnished-with-long-cookie-berries_140725-8512.jpg",
|
src: "http://img.b2bpic.net/free-photo/bowl-french-dessert-garnished-with-long-cookie-berries_140725-8512.jpg", alt: "A bowl of french dessert"},
|
||||||
alt: "A bowl of french dessert",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/bowl-french-dessert-garnished-with-berries-placed-book_140725-8511.jpg",
|
src: "http://img.b2bpic.net/free-photo/bowl-french-dessert-garnished-with-berries-placed-book_140725-8511.jpg", alt: "A bowl of french dessert on book"},
|
||||||
alt: "A bowl of french dessert on book",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/ornate-windows-art-nouveau-style-with-stained-glass_23-2150975601.jpg",
|
src: "http://img.b2bpic.net/free-photo/ornate-windows-art-nouveau-style-with-stained-glass_23-2150975601.jpg", alt: "Ornate windows"},
|
||||||
alt: "Ornate windows",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/ramadan-celebration-digital-art_23-2151358065.jpg",
|
src: "http://img.b2bpic.net/free-photo/ramadan-celebration-digital-art_23-2151358065.jpg", alt: "Ramadan celebration"},
|
||||||
alt: "Ramadan celebration",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/delicious-smoke-cooked-food_23-2151259728.jpg",
|
src: "http://img.b2bpic.net/free-photo/delicious-smoke-cooked-food_23-2151259728.jpg", alt: "Delicious food"},
|
||||||
alt: "Delicious food",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Authentic Georgian Taste"},
|
||||||
text: "Authentic Georgian Taste",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Traditional Hospitality"},
|
||||||
text: "Traditional Hospitality",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Premium Wine Selection"},
|
||||||
text: "Premium Wine Selection",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Warm Atmosphere"},
|
||||||
text: "Warm Atmosphere",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Handmade Khinkali"},
|
||||||
text: "Handmade Khinkali",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -134,20 +101,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
title: "Khachapuri",
|
title: "Khachapuri", description: "Authentic cheese-filled breads baked to perfection.", imageSrc: "http://img.b2bpic.net/free-photo/khachapuri-with-kitchen-towel-dough-flour-wooden-cutting-board_176474-6831.jpg?_wi=1"},
|
||||||
description: "Authentic cheese-filled breads baked to perfection.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/khachapuri-with-kitchen-towel-dough-flour-wooden-cutting-board_176474-6831.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Khinkali",
|
title: "Khinkali", description: "Hand-folded dumplings with savory fillings and rich broth.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-hot-pot_23-2149529850.jpg?_wi=1"},
|
||||||
description: "Hand-folded dumplings with savory fillings and rich broth.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-hot-pot_23-2149529850.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
title: "Georgian Wine",
|
title: "Georgian Wine", description: "Ancient qvevri wine techniques brought to your table.", imageSrc: "http://img.b2bpic.net/free-photo/red-wine-bottle-glass-marble-table_114579-21068.jpg?_wi=1"},
|
||||||
description: "Ancient qvevri wine techniques brought to your table.",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/red-wine-bottle-glass-marble-table_114579-21068.jpg?_wi=1",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Soulful Cuisine"
|
title="Soulful Cuisine"
|
||||||
description="Discover the vibrant flavors and rich heritage of authentic Georgian cooking."
|
description="Discover the vibrant flavors and rich heritage of authentic Georgian cooking."
|
||||||
@@ -160,60 +118,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", name: "Elena Petrova", date: "Jan 2024", title: "Memorable Dinner", quote: "The food and atmosphere are purely authentic. I felt right at home.", tag: "Romantic Dinner", avatarSrc: "http://img.b2bpic.net/free-photo/group-friends-dining-out_23-2149187205.jpg", imageSrc: "http://img.b2bpic.net/free-photo/catering-tablecloth-plate-drink-background_1203-5091.jpg?_wi=2", imageAlt: "happy couple dining luxury restaurant"},
|
||||||
name: "Elena Petrova",
|
|
||||||
date: "Jan 2024",
|
|
||||||
title: "Memorable Dinner",
|
|
||||||
quote: "The food and atmosphere are purely authentic. I felt right at home.",
|
|
||||||
tag: "Romantic Dinner",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/group-friends-dining-out_23-2149187205.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/catering-tablecloth-plate-drink-background_1203-5091.jpg?_wi=2",
|
|
||||||
imageAlt: "happy couple dining luxury restaurant",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", name: "Markus Weber", date: "Dec 2023", title: "Business Success", quote: "Impressive service and beautiful presentation. Perfect for business.", tag: "Business", avatarSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081865.jpg", imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-containing-mixed-ingredients-blue-ceramic-plate_114579-1997.jpg?_wi=2", imageAlt: "happy couple dining luxury restaurant"},
|
||||||
name: "Markus Weber",
|
|
||||||
date: "Dec 2023",
|
|
||||||
title: "Business Success",
|
|
||||||
quote: "Impressive service and beautiful presentation. Perfect for business.",
|
|
||||||
tag: "Business",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/people-having-dinner-luxurious-restaurants_23-2151081865.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/vegetable-salad-containing-mixed-ingredients-blue-ceramic-plate_114579-1997.jpg?_wi=2",
|
|
||||||
imageAlt: "happy couple dining luxury restaurant",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", name: "Nodir Karim", date: "Nov 2023", title: "Amazing Family Night", quote: "Truly warm hospitality, just like in Georgia itself.", tag: "Family", avatarSrc: "http://img.b2bpic.net/free-photo/people-enjoying-festive-christmas-dinner-together_23-2149174104.jpg", imageSrc: "http://img.b2bpic.net/free-photo/khachapuri-with-kitchen-towel-dough-flour-wooden-cutting-board_176474-6831.jpg?_wi=2", imageAlt: "happy couple dining luxury restaurant"},
|
||||||
name: "Nodir Karim",
|
|
||||||
date: "Nov 2023",
|
|
||||||
title: "Amazing Family Night",
|
|
||||||
quote: "Truly warm hospitality, just like in Georgia itself.",
|
|
||||||
tag: "Family",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/people-enjoying-festive-christmas-dinner-together_23-2149174104.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/khachapuri-with-kitchen-towel-dough-flour-wooden-cutting-board_176474-6831.jpg?_wi=2",
|
|
||||||
imageAlt: "happy couple dining luxury restaurant",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "4",
|
id: "4", name: "Sarah Miller", date: "Oct 2023", title: "True Authenticity", quote: "The best khinkali I have had outside of Tbilisi. Incredible.", tag: "Foodie", avatarSrc: "http://img.b2bpic.net/free-photo/crazy-chef-happy-expression_1194-1320.jpg", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-hot-pot_23-2149529850.jpg?_wi=2", imageAlt: "happy couple dining luxury restaurant"},
|
||||||
name: "Sarah Miller",
|
|
||||||
date: "Oct 2023",
|
|
||||||
title: "True Authenticity",
|
|
||||||
quote: "The best khinkali I have had outside of Tbilisi. Incredible.",
|
|
||||||
tag: "Foodie",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/crazy-chef-happy-expression_1194-1320.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chinese-hot-pot_23-2149529850.jpg?_wi=2",
|
|
||||||
imageAlt: "happy couple dining luxury restaurant",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "5",
|
id: "5", name: "Alex Smith", date: "Sep 2023", title: "Excellent Evening", quote: "Unforgettable experience for my special event.", tag: "Celebration", avatarSrc: "http://img.b2bpic.net/free-photo/charming-brunette-black-dress-is-standing-by-her-man-who-sits-table-luxury-restaurant_613910-3908.jpg", imageSrc: "http://img.b2bpic.net/free-photo/red-wine-bottle-glass-marble-table_114579-21068.jpg?_wi=2", imageAlt: "happy couple dining luxury restaurant"},
|
||||||
name: "Alex Smith",
|
|
||||||
date: "Sep 2023",
|
|
||||||
title: "Excellent Evening",
|
|
||||||
quote: "Unforgettable experience for my special event.",
|
|
||||||
tag: "Celebration",
|
|
||||||
avatarSrc: "http://img.b2bpic.net/free-photo/charming-brunette-black-dress-is-standing-by-her-man-who-sits-table-luxury-restaurant_613910-3908.jpg",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/red-wine-bottle-glass-marble-table_114579-21068.jpg?_wi=2",
|
|
||||||
imageAlt: "happy couple dining luxury restaurant",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="What Our Guests Say"
|
title="What Our Guests Say"
|
||||||
description="Heartfelt experiences from those who have joined our table."
|
description="Heartfelt experiences from those who have joined our table."
|
||||||
@@ -228,20 +141,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
metrics={[
|
metrics={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", value: "15+", description: "Authentic Recipes"},
|
||||||
value: "15+",
|
|
||||||
description: "Authentic Recipes",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", value: "500+", description: "Satisfied Guests"},
|
||||||
value: "500+",
|
|
||||||
description: "Satisfied Guests",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", value: "100%", description: "Hand-Made Quality"},
|
||||||
value: "100%",
|
|
||||||
description: "Hand-Made Quality",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Passion in Numbers"
|
title="Our Passion in Numbers"
|
||||||
description="Reflecting our commitment to quality and service excellence."
|
description="Reflecting our commitment to quality and service excellence."
|
||||||
@@ -254,20 +158,11 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "1",
|
id: "1", title: "Do I need a reservation?", content: "Yes, we highly recommend booking in advance to ensure your table."},
|
||||||
title: "Do I need a reservation?",
|
|
||||||
content: "Yes, we highly recommend booking in advance to ensure your table.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "2",
|
id: "2", title: "Can you host private events?", content: "Yes, we specialize in intimate celebrations and group gatherings."},
|
||||||
title: "Can you host private events?",
|
|
||||||
content: "Yes, we specialize in intimate celebrations and group gatherings.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "3",
|
id: "3", title: "Is your cuisine halal?", content: "We offer a selection of dishes suitable for different dietary needs."},
|
||||||
title: "Is your cuisine halal?",
|
|
||||||
content: "We offer a selection of dishes suitable for different dietary needs.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Frequently Asked Questions"
|
title="Frequently Asked Questions"
|
||||||
description="Everything you need to know about dining at Грузинка."
|
description="Everything you need to know about dining at Грузинка."
|
||||||
@@ -279,11 +174,10 @@ export default function LandingPage() {
|
|||||||
<ContactCenter
|
<ContactCenter
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
tag="Reservations"
|
tag="Reservations"
|
||||||
title="Join Us Today"
|
title="Come Hungry. Leave Happy"
|
||||||
description="Secure your table and experience authentic Georgian hospitality."
|
description="From our kitchen to your heart, discover the soulful flavors of Georgia. Book your table or get directions to our home today."
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -296,4 +190,4 @@ export default function LandingPage() {
|
|||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #0a0a0a;
|
--background: #F5F5F5;
|
||||||
--card: #1a1a1a;
|
--card: #FFFFFF;
|
||||||
--foreground: #f5f5f5;
|
--foreground: #141414;
|
||||||
--primary-cta: #ffdf7d;
|
--primary-cta: #4A0F1B;
|
||||||
--primary-cta-text: #0a0a0a;
|
--primary-cta-text: #0a0a0a;
|
||||||
--secondary-cta: #1a1a1a;
|
--secondary-cta: #C8A46B;
|
||||||
--secondary-cta-text: #ffffff;
|
--secondary-cta-text: #ffffff;
|
||||||
--accent: #b8860b;
|
--accent: #C8A46B;
|
||||||
--background-accent: #8b6914;
|
--background-accent: #4A0F1B;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user