Compare commits
33 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 26e1d74166 | |||
| 63f8c21f20 | |||
| d609a851a0 | |||
| e3645620f4 | |||
| 22d7d936ee | |||
| 60bc2a8621 | |||
| ab29fabc7f | |||
| b4de7e8df9 | |||
| 136888d3d4 | |||
| 71e5b9ef53 | |||
| 45383f1124 | |||
| 073eb3c86c | |||
| 729e7c9657 | |||
| 93bbe40268 | |||
| 3e2b4de24c | |||
| beb3ffadf8 | |||
| d1c3824033 | |||
| f7ad2af475 | |||
| 1a76fcb7dc | |||
| 606a2b62a0 | |||
| dfd13052e6 | |||
| 1ec9f8bb94 | |||
| b8489250a6 | |||
| 26874ab620 | |||
| 0258dcad92 | |||
| 62b6a06e27 | |||
| 610ce03c5d | |||
| ff009eebf9 | |||
| e11c2d3d57 | |||
| f320fee4b7 | |||
| d0a403e465 | |||
| fafa9a13cd | |||
| 9c62e731e4 |
59
src/app/lola-kafe/page.tsx
Normal file
59
src/app/lola-kafe/page.tsx
Normal file
@@ -0,0 +1,59 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
|
||||
export default function LolaKafePage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="rounded"
|
||||
contentWidth="smallMedium"
|
||||
sizing="largeSizeMediumTitles"
|
||||
background="grid"
|
||||
cardStyle="gradient-radial"
|
||||
primaryButtonStyle="primary-glow"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "About", id: "/lola-kafe" },
|
||||
{ name: "Menu", id: "/#menu" },
|
||||
{ name: "Reservation", id: "/#reservation" },
|
||||
{ name: "Contact", id: "/#contact" },
|
||||
]}
|
||||
brandName="Number 1 palov in Shakhrisabz"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about" className="py-20">
|
||||
<MediaAbout
|
||||
useInvertedBackground={false}
|
||||
title="Lola Kafe: A Unique Experience"
|
||||
description="Discover the charm and flavors of Lola Kafe, where traditional recipes meet modern comfort. We are committed to providing an exceptional culinary journey for every guest."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BvWgR82VZNMwRJZ6Ff0vMRfeG9/uploaded-1775837730602-j61oa74s.jpg?_wi=2"
|
||||
imageAlt="Lola Kafe Interior"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[
|
||||
{ items: [{ label: "Home", href: "/" }, { label: "Contact", href: "/#reservation" }] },
|
||||
{ items: [{ label: "Shakhrisabz City Center", href: "#" }] }
|
||||
]}
|
||||
logoText="Lola Kafe"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
241
src/app/page.tsx
241
src/app/page.tsx
@@ -4,7 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
import HeroOverlay from '@/components/sections/hero/HeroOverlay';
|
||||
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
|
||||
import MediaAbout from '@/components/sections/about/MediaAbout';
|
||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||
import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
|
||||
@@ -28,81 +28,42 @@ export default function LandingPage() {
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleFullscreen
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "hero",
|
||||
},
|
||||
{
|
||||
name: "About",
|
||||
id: "about",
|
||||
},
|
||||
{
|
||||
name: "Menu",
|
||||
id: "menu",
|
||||
},
|
||||
{
|
||||
name: "Reservation",
|
||||
id: "reservation",
|
||||
},
|
||||
{
|
||||
name: "Contact",
|
||||
id: "contact",
|
||||
},
|
||||
{ name: "Home", id: "hero" },
|
||||
{ name: "About", id: "/lola-kafe" },
|
||||
{ name: "Menu", id: "menu" },
|
||||
{ name: "Reservation", id: "reservation" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="Sarchashma"
|
||||
brandName="Lola kafe "
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroOverlay
|
||||
title="Authentic Uzbek Flavors in a Premium Atmosphere"
|
||||
description="Experience tradition, taste, and hospitality at Sarchashma."
|
||||
<HeroBillboardRotatedCarousel
|
||||
title="Haqiqiy o'zbek lazzatlari yuqori darajadagi atmosferada"
|
||||
description="N1 palov in Shakhrisabz — an'ana, ta'm va mehmondo'stlikni his eting"
|
||||
buttons={[
|
||||
{
|
||||
text: "View Menu",
|
||||
href: "#menu",
|
||||
},
|
||||
{
|
||||
text: "Book a Table",
|
||||
href: "#reservation",
|
||||
},
|
||||
{ text: "Menu", href: "#menu" },
|
||||
{ text: "Book a Table", href: "#reservation" },
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg?_wi=1"
|
||||
imageAlt="Traditional Uzbek plov and dishes"
|
||||
showDimOverlay={true}
|
||||
showBlur={false}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
carouselItems={[
|
||||
{ id: "1", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BvWgR82VZNMwRJZ6Ff0vMRfeG9/uploaded-1775837468018-fgz2fq5c.webp?_wi=1", imageAlt: "Traditional Uzbek plov" },
|
||||
{ id: "2", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BvWgR82VZNMwRJZ6Ff0vMRfeG9/uploaded-1775837730602-j61oa74s.jpg?_wi=1", imageAlt: "Authentic Uzbek cuisine" },
|
||||
{ id: "3", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BvWgR82VZNMwRJZ6Ff0vMRfeG9/uploaded-1775837468018-fgz2fq5c.webp?_wi=2", imageAlt: "Traditional Uzbek plov" },
|
||||
{ id: "4", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BvWgR82VZNMwRJZ6Ff0vMRfeG9/uploaded-1775837730602-j61oa74s.jpg?_wi=1", imageAlt: "Authentic Uzbek cuisine" },
|
||||
{ id: "5", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BvWgR82VZNMwRJZ6Ff0vMRfeG9/uploaded-1775837468018-fgz2fq5c.webp?_wi=3", imageAlt: "Traditional Uzbek plov" },
|
||||
{ id: "6", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BvWgR82VZNMwRJZ6Ff0vMRfeG9/uploaded-1775837730602-j61oa74s.jpg?_wi=1", imageAlt: "Authentic Uzbek cuisine" }
|
||||
]}
|
||||
avatarText="Join 1000+ satisfied guests"
|
||||
background={{ variant: 'rotated-rays-static' }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<MediaAbout
|
||||
useInvertedBackground={true}
|
||||
title="A Legacy of Uzbek Hospitality"
|
||||
description="At Sarchashma, we bring the heart of Uzbekistan to your table. From the intense heat of our traditional tandem ovens to the delicate craftsmanship of our kazan cooking, every dish tells a story of heritage, freshness, and authentic flavors."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/two-ancient-kettles-with-empty-wooden-plate-burlap_114579-40268.jpg"
|
||||
title="O'zbek mehmondo'stligi merosi"
|
||||
description="Number 1 palov in Shakhrisabzda biz O‘zbekiston qalbini dasturxoningizga tortamiz. An’anaviy tandem pechlarimizning qizg‘in isishidan tortib qozon pishirishning nozik mahoratigacha, har bir taom meros, tazelik va o‘ziga xos lazzat haqida hikoya qiladi."
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BvWgR82VZNMwRJZ6Ff0vMRfeG9/uploaded-1775837730602-j61oa74s.jpg?_wi=1"
|
||||
imageAlt="Authentic Uzbek culinary tradition"
|
||||
/>
|
||||
</div>
|
||||
@@ -113,64 +74,16 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
gridVariant="three-columns-all-equal-width"
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
brand: "Main",
|
||||
name: "Traditional Plov",
|
||||
price: "$18",
|
||||
rating: 5,
|
||||
reviewCount: "120",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: "p2",
|
||||
brand: "Main",
|
||||
name: "Lagman Soup",
|
||||
price: "$15",
|
||||
rating: 5,
|
||||
reviewCount: "98",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: "p3",
|
||||
brand: "Main",
|
||||
name: "Shashlik Set",
|
||||
price: "$22",
|
||||
rating: 4,
|
||||
reviewCount: "150",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg?_wi=4",
|
||||
},
|
||||
{
|
||||
id: "p4",
|
||||
brand: "Bakery",
|
||||
name: "Fresh Samsa",
|
||||
price: "$6",
|
||||
rating: 5,
|
||||
reviewCount: "210",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg?_wi=5",
|
||||
},
|
||||
{
|
||||
id: "p5",
|
||||
brand: "Bakery",
|
||||
name: "Uzbek Non",
|
||||
price: "$4",
|
||||
rating: 5,
|
||||
reviewCount: "300",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg?_wi=6",
|
||||
},
|
||||
{
|
||||
id: "p6",
|
||||
brand: "Drink",
|
||||
name: "Ayran Yogurt",
|
||||
price: "$5",
|
||||
rating: 4,
|
||||
reviewCount: "85",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg?_wi=7",
|
||||
},
|
||||
]}
|
||||
title="Our National Treasures"
|
||||
description="Exquisite dishes prepared using ancestral recipes passed down through generations."
|
||||
products={[
|
||||
{ id: "d1", brand: "Traditional", name: "Shakhrisabz Plov", price: "45,000 UZS", rating: 5, reviewCount: "120", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BvWgR82VZNMwRJZ6Ff0vMRfeG9/uploaded-1775837468018-fgz2fq5c.webp?_wi=1", imageAlt: "Plov" },
|
||||
{ id: "d2", brand: "Bakery", name: "Fresh Tandir Non", price: "8,000 UZS", rating: 4.8, reviewCount: "85", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BvWgR82VZNMwRJZ6Ff0vMRfeG9/uploaded-1775837730602-j61oa74s.jpg?_wi=1", imageAlt: "Tandir Bread" },
|
||||
{ id: "d3", brand: "Appetizer", name: "Samsa", price: "12,000 UZS", rating: 4.9, reviewCount: "95", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BvWgR82VZNMwRJZ6Ff0vMRfeG9/uploaded-1775837468018-fgz2fq5c.webp?_wi=1", imageAlt: "Samsa" },
|
||||
{ id: "d4", brand: "Traditional", name: "Lagmon", price: "35,000 UZS", rating: 4.7, reviewCount: "150", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BvWgR82VZNMwRJZ6Ff0vMRfeG9/uploaded-1775837730602-j61oa74s.jpg?_wi=1", imageAlt: "Lagmon" },
|
||||
{ id: "d5", brand: "Traditional", name: "Shashlik Mix", price: "25,000 UZS", rating: 5, reviewCount: "300", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BvWgR82VZNMwRJZ6Ff0vMRfeG9/uploaded-1775837468018-fgz2fq5c.webp?_wi=1", imageAlt: "Shashlik" },
|
||||
{ id: "d6", brand: "Drinks", name: "Traditional Green Tea", price: "5,000 UZS", rating: 4.9, reviewCount: "210", imageSrc: "https://img.freepik.com/free-photo/green-tea-teapot-cups_144627-24874.jpg?t=st=1710430000~exp=1710433600~hmac=e2a14e12e3e57e937d53b26c27f6e4a6a57d3630f81d1e0892289f6655517f6a", imageAlt: "Green Tea" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -180,28 +93,7 @@ export default function LandingPage() {
|
||||
testimonial="An absolute revelation. The Plov is the most authentic I have ever tasted outside of Tashkent. Truly premium service!"
|
||||
rating={5}
|
||||
author="Elena V."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg",
|
||||
alt: "Customer 1",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg",
|
||||
alt: "Customer 2",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg",
|
||||
alt: "Customer 3",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg",
|
||||
alt: "Customer 4",
|
||||
},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/vertical-view-delicious-chicken-soup-with-noodles-greens-spoon-pink-stripped-towel-oil-bottle-garlic-lemon-notebook-dark-background_140725-141683.jpg",
|
||||
alt: "Customer 5",
|
||||
},
|
||||
]}
|
||||
avatars={[]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
/>
|
||||
@@ -211,40 +103,16 @@ export default function LandingPage() {
|
||||
<ContactSplitForm
|
||||
useInvertedBackground={false}
|
||||
title="Reserve Your Table"
|
||||
description="Secure your place at our table and enjoy an evening of authentic culture and fine dining."
|
||||
description="Secure your place at Number 1 palov in Shakhrisabz. For inquiries: +998 90 123-45-67 | Location: Shakhrisabz City Center"
|
||||
inputs={[
|
||||
{
|
||||
name: "name",
|
||||
type: "text",
|
||||
placeholder: "Your Name",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "phone",
|
||||
type: "tel",
|
||||
placeholder: "Phone Number",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "date",
|
||||
type: "date",
|
||||
placeholder: "Date",
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
name: "time",
|
||||
type: "time",
|
||||
placeholder: "Time",
|
||||
required: true,
|
||||
},
|
||||
{ name: "name", type: "text", placeholder: "Your Name", required: true },
|
||||
{ name: "phone", type: "tel", placeholder: "Phone Number", required: true },
|
||||
{ name: "date", type: "date", placeholder: "Date", required: true },
|
||||
{ name: "time", type: "time", placeholder: "Time", required: true },
|
||||
]}
|
||||
textarea={{
|
||||
name: "notes",
|
||||
placeholder: "Special requests or allergy information",
|
||||
rows: 3,
|
||||
}}
|
||||
textarea={{ name: "notes", placeholder: "Special requests or allergy information", rows: 3 }}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/tables-chairs-arranged-empty-coffee-shop_107420-96463.jpg"
|
||||
imageAlt="Dining experience at Sarchashma"
|
||||
imageAlt="Dining experience"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -253,33 +121,28 @@ export default function LandingPage() {
|
||||
columns={[
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Facebook",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Instagram",
|
||||
href: "#",
|
||||
},
|
||||
{ label: "Instagram", href: "#" },
|
||||
{ label: "WhatsApp", href: "#" },
|
||||
{ label: "Telegram", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "#",
|
||||
},
|
||||
{
|
||||
label: "Legal",
|
||||
href: "#",
|
||||
},
|
||||
{ label: "Call: +998 90 123-45-67", href: "tel:+998901234567" },
|
||||
{ label: "Shakhrisabz City Center", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Legal", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
logoText="Sarchashma"
|
||||
logoText="Number 1 palov in Shakhrisabz"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user