Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7522c081c6 |
226
src/app/page.tsx
226
src/app/page.tsx
@@ -31,27 +31,17 @@ export default function LandingPage() {
|
|||||||
<NavbarLayoutFloatingInline
|
<NavbarLayoutFloatingInline
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "hero"},
|
||||||
id: "hero",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "About",
|
name: "About", id: "about"},
|
||||||
id: "about",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Menu",
|
name: "Menu", id: "services"},
|
||||||
id: "services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="Hanilkwan Korean Restaurant"
|
brandName="Hanilkwan Korean Restaurant"
|
||||||
button={{
|
button={{
|
||||||
text: "Call Now",
|
text: "Call Now", href: "tel:+97677724000"}}
|
||||||
href: "tel:+97677724000",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -59,104 +49,59 @@ export default function LandingPage() {
|
|||||||
<HeroSplitTestimonial
|
<HeroSplitTestimonial
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "gradient-bars",
|
variant: "gradient-bars"}}
|
||||||
}}
|
|
||||||
title="Таны амьдралыг илүү амттай болгоно."
|
title="Таны амьдралыг илүү амттай болгоно."
|
||||||
description="Authentic Korean flavors in the heart of Ulaanbaatar. Fresh ingredients, traditional recipes, and warm hospitality for your family and friends."
|
description="Authentic Korean flavors in the heart of Ulaanbaatar. Fresh ingredients, traditional recipes, and warm hospitality for your family and friends."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
name: "Sarah K.",
|
name: "Sarah K.", handle: "@sarahk", testimonial: "The most authentic experience in UB. Loved it!", rating: 5,
|
||||||
handle: "@sarahk",
|
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-eating-restaurant_23-2148395390.jpg"},
|
||||||
testimonial: "The most authentic experience in UB. Loved it!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/group-friends-eating-restaurant_23-2148395390.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Michael L.",
|
name: "Michael L.", handle: "@michaell", testimonial: "Exceptional flavors, generous portions.", rating: 5,
|
||||||
handle: "@michaell",
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-brunette-woman-drinks-morning-coffee-cafe_613910-12094.jpg"},
|
||||||
testimonial: "Exceptional flavors, generous portions.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-brunette-woman-drinks-morning-coffee-cafe_613910-12094.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Emily P.",
|
name: "Emily P.", handle: "@emilyp", testimonial: "Perfect spot for family dinners.", rating: 5,
|
||||||
handle: "@emilyp",
|
imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-woman-tourist-making-selfie-by-smartphone-eating-ice-cream-street-market_839833-1787.jpg"},
|
||||||
testimonial: "Perfect spot for family dinners.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-hispanic-woman-tourist-making-selfie-by-smartphone-eating-ice-cream-street-market_839833-1787.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "David Z.",
|
name: "David Z.", handle: "@davidz", testimonial: "Fresh, delicious, and consistent.", rating: 5,
|
||||||
handle: "@davidz",
|
imageSrc: "http://img.b2bpic.net/free-photo/young-happy-woman-having-fun-while-eating-dinner-communicating-with-friends-dining-table_637285-3342.jpg"},
|
||||||
testimonial: "Fresh, delicious, and consistent.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-happy-woman-having-fun-while-eating-dinner-communicating-with-friends-dining-table_637285-3342.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Alice T.",
|
name: "Alice T.", handle: "@alicet", testimonial: "Amazing service every time.", rating: 5,
|
||||||
handle: "@alicet",
|
imageSrc: "http://img.b2bpic.net/free-photo/old-zero-waste-shop-owner-does-marketing_482257-76263.jpg"},
|
||||||
testimonial: "Amazing service every time.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/old-zero-waste-shop-owner-does-marketing_482257-76263.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Call Now",
|
text: "Call Now", href: "tel:+97677724000"},
|
||||||
href: "tel:+97677724000",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "Get Quote",
|
text: "Get Quote", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/high-angle-dining-table-arrangement_23-2150312220.jpg"
|
imageSrc="https://img.freepik.com/free-photo/traditional-korean-food-set-table-top-view_23-2148467262.jpg"
|
||||||
imageAlt="Hanilkwan Korean Restaurant Interior"
|
imageAlt="Hanilkwan Korean Restaurant Featured Meal"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/person-happy-woman-clanging-glasses-wine-table-cafe_23-2148016787.jpg",
|
src: "http://img.b2bpic.net/free-photo/person-happy-woman-clanging-glasses-wine-table-cafe_23-2148016787.jpg", alt: "Customer profile 1"},
|
||||||
alt: "Customer profile 1",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/healthy-woman-with-tan-sitting-t-shirt-cafe-terrace-eating-breakfast-drinking-coffee_197531-22516.jpg",
|
src: "http://img.b2bpic.net/free-photo/healthy-woman-with-tan-sitting-t-shirt-cafe-terrace-eating-breakfast-drinking-coffee_197531-22516.jpg", alt: "Customer profile 2"},
|
||||||
alt: "Customer profile 2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5053.jpg",
|
src: "http://img.b2bpic.net/free-photo/beautiful-african-american-woman-cafe_273609-5053.jpg", alt: "Customer profile 3"},
|
||||||
alt: "Customer profile 3",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/young-adult-enjoying-food_23-2149303536.jpg",
|
src: "http://img.b2bpic.net/free-photo/young-adult-enjoying-food_23-2149303536.jpg", alt: "Customer profile 4"},
|
||||||
alt: "Customer profile 4",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "http://img.b2bpic.net/free-photo/beautiful-businesswoman-drinking-coffee-enjoying-cafe-after-work_637285-248.jpg",
|
src: "http://img.b2bpic.net/free-photo/beautiful-businesswoman-drinking-coffee-enjoying-cafe-after-work_637285-248.jpg", alt: "Customer profile 5"},
|
||||||
alt: "Customer profile 5",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Join 500+ happy diners"
|
avatarText="Join 500+ happy diners"
|
||||||
marqueeItems={[
|
marqueeItems={[
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Fresh Ingredients"},
|
||||||
text: "Fresh Ingredients",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Authentic Recipes"},
|
||||||
text: "Authentic Recipes",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Warm Hospitality"},
|
||||||
text: "Warm Hospitality",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Modern Dining"},
|
||||||
text: "Modern Dining",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
type: "text",
|
type: "text", text: "Traditional Flavor"},
|
||||||
text: "Traditional Flavor",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -179,19 +124,13 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: Flame,
|
icon: Flame,
|
||||||
title: "Korean Barbecue",
|
title: "Korean Barbecue", description: "Premium cuts of meat grilled to perfection right at your table."},
|
||||||
description: "Premium cuts of meat grilled to perfection right at your table.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Utensils,
|
icon: Utensils,
|
||||||
title: "Traditional Soups",
|
title: "Traditional Soups", description: "Slow-simmered broths capturing rich, authentic Korean flavors."},
|
||||||
description: "Slow-simmered broths capturing rich, authentic Korean flavors.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Leaf,
|
icon: Leaf,
|
||||||
title: "Banchan Selection",
|
title: "Banchan Selection", description: "An assortment of fresh, healthy, and colorful traditional side dishes."},
|
||||||
description: "An assortment of fresh, healthy, and colorful traditional side dishes.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Signature Specialties"
|
title="Our Signature Specialties"
|
||||||
description="Explore our menu of traditional Korean favorites, crafted with fresh, local ingredients."
|
description="Explore our menu of traditional Korean favorites, crafted with fresh, local ingredients."
|
||||||
@@ -206,19 +145,13 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: Award,
|
icon: Award,
|
||||||
title: "Years of Expertise",
|
title: "Years of Expertise", description: "Dedicated to maintaining the highest culinary standards."},
|
||||||
description: "Dedicated to maintaining the highest culinary standards.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Users,
|
icon: Users,
|
||||||
title: "Warm Atmosphere",
|
title: "Warm Atmosphere", description: "The perfect setting for family gatherings and celebrations."},
|
||||||
description: "The perfect setting for family gatherings and celebrations.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: CheckCircle,
|
icon: CheckCircle,
|
||||||
title: "Freshness Guaranteed",
|
title: "Freshness Guaranteed", description: "We use only the best local produce and high-quality ingredients."},
|
||||||
description: "We use only the best local produce and high-quality ingredients.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Why Choose Us?"
|
title="Why Choose Us?"
|
||||||
description="We are committed to delivering the best local dining experience for our customers."
|
description="We are committed to delivering the best local dining experience for our customers."
|
||||||
@@ -233,41 +166,17 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Grilled Specialties", price: "Signature", imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-table_23-2147680656.jpg"},
|
||||||
name: "Grilled Specialties",
|
|
||||||
price: "Signature",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/delicious-food-table_23-2147680656.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "Welcoming Entrance", price: "Open Daily", imageSrc: "http://img.b2bpic.net/free-photo/lit-diner-place-city-night_23-2149001294.jpg"},
|
||||||
name: "Welcoming Entrance",
|
|
||||||
price: "Open Daily",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/lit-diner-place-city-night_23-2149001294.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "Traditional Side Dishes", price: "Fresh", imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-salad-with-vegetables-dark-table-diet-health-salad_140725-73197.jpg"},
|
||||||
name: "Traditional Side Dishes",
|
|
||||||
price: "Fresh",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-chicken-salad-with-vegetables-dark-table-diet-health-salad_140725-73197.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "Authentic Soup", price: "Hot", imageSrc: "http://img.b2bpic.net/free-photo/homemade-apple-pie-ingredients-white-wooden-background-top-view-copy-space_127032-1924.jpg"},
|
||||||
name: "Authentic Soup",
|
|
||||||
price: "Hot",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/homemade-apple-pie-ingredients-white-wooden-background-top-view-copy-space_127032-1924.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", name: "Chef's Plate", price: "Gourmet", imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-coffee-shop_23-2148366675.jpg"},
|
||||||
name: "Chef's Plate",
|
|
||||||
price: "Gourmet",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/couple-enjoying-coffee-shop_23-2148366675.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", name: "Tea Service", price: "Refreshing", imageSrc: "http://img.b2bpic.net/free-photo/arrangement-delicious-preserved-vegetables_23-2148626060.jpg"},
|
||||||
name: "Tea Service",
|
|
||||||
price: "Refreshing",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/arrangement-delicious-preserved-vegetables_23-2148626060.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="A Taste of Tradition"
|
title="A Taste of Tradition"
|
||||||
description="Browse our restaurant visuals and signature dishes."
|
description="Browse our restaurant visuals and signature dishes."
|
||||||
@@ -280,45 +189,15 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={true}
|
useInvertedBackground={true}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", title: "Excellent!", quote: "The food is consistently excellent. My favorite spot.", name: "Sarah K.", role: "Regular Guest", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-girl-sitting-cafe_176420-5900.jpg"},
|
||||||
title: "Excellent!",
|
|
||||||
quote: "The food is consistently excellent. My favorite spot.",
|
|
||||||
name: "Sarah K.",
|
|
||||||
role: "Regular Guest",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-girl-sitting-cafe_176420-5900.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", title: "Top Tier", quote: "Best BBQ in UB. Very authentic service.", name: "Michael L.", role: "Local Resident", imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-holding-plate-with-muffin_107420-12322.jpg"},
|
||||||
title: "Top Tier",
|
|
||||||
quote: "Best BBQ in UB. Very authentic service.",
|
|
||||||
name: "Michael L.",
|
|
||||||
role: "Local Resident",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-waitress-holding-plate-with-muffin_107420-12322.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", title: "Great Vibe", quote: "Cozy atmosphere and delicious traditional plates.", name: "Emily P.", role: "Customer", imageSrc: "http://img.b2bpic.net/free-photo/clueless-young-chef-wearing-glasses-uniform-cap-holding-apple-plate-looking-side-showing-empty-hand-isolated-purple-background_141793-140486.jpg"},
|
||||||
title: "Great Vibe",
|
|
||||||
quote: "Cozy atmosphere and delicious traditional plates.",
|
|
||||||
name: "Emily P.",
|
|
||||||
role: "Customer",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/clueless-young-chef-wearing-glasses-uniform-cap-holding-apple-plate-looking-side-showing-empty-hand-isolated-purple-background_141793-140486.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", title: "Must Visit", quote: "The flavors are spot on. Really delicious.", name: "David Z.", role: "Foodie", imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-her-virtual-date_23-2149307279.jpg"},
|
||||||
title: "Must Visit",
|
|
||||||
quote: "The flavors are spot on. Really delicious.",
|
|
||||||
name: "David Z.",
|
|
||||||
role: "Foodie",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/woman-enjoying-her-virtual-date_23-2149307279.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", title: "Friendly Staff", quote: "Such a warm welcome every time we visit.", name: "Alice T.", role: "Happy Customer", imageSrc: "http://img.b2bpic.net/free-photo/young-gardener-girl-apron-summer-hat-smiling-cheerfully-showing-thumbs-up-standing-green-wall_141793-82135.jpg"},
|
||||||
title: "Friendly Staff",
|
|
||||||
quote: "Such a warm welcome every time we visit.",
|
|
||||||
name: "Alice T.",
|
|
||||||
role: "Happy Customer",
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/young-gardener-girl-apron-summer-hat-smiling-cheerfully-showing-thumbs-up-standing-green-wall_141793-82135.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="What Our Guests Say"
|
title="What Our Guests Say"
|
||||||
description="Authentic reviews from our community."
|
description="Authentic reviews from our community."
|
||||||
@@ -329,8 +208,7 @@ export default function LandingPage() {
|
|||||||
<ContactCenter
|
<ContactCenter
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "radial-gradient",
|
variant: "radial-gradient"}}
|
||||||
}}
|
|
||||||
tag="Contact Us"
|
tag="Contact Us"
|
||||||
title="Visit Us Today"
|
title="Visit Us Today"
|
||||||
description="Located in Naadamchid Rd. Call us for reservations."
|
description="Located in Naadamchid Rd. Call us for reservations."
|
||||||
@@ -341,13 +219,9 @@ export default function LandingPage() {
|
|||||||
<FooterLogoReveal
|
<FooterLogoReveal
|
||||||
logoText="Hanilkwan Korean Restaurant"
|
logoText="Hanilkwan Korean Restaurant"
|
||||||
leftLink={{
|
leftLink={{
|
||||||
text: "Privacy & Legal",
|
text: "Privacy & Legal", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
rightLink={{
|
rightLink={{
|
||||||
text: "© 2024 Hanilkwan Restaurant",
|
text: "© 2024 Hanilkwan Restaurant", href: "#"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user