11 Commits

Author SHA1 Message Date
4b669a2e2c Switch to version 2: modified src/app/page.tsx 2026-03-19 06:26:47 +00:00
2d0ba2959f Switch to version 1: modified src/app/page.tsx 2026-03-19 06:23:10 +00:00
defa21d07d Switch to version 2: modified src/app/page.tsx 2026-03-19 06:22:44 +00:00
093048df18 Switch to version 1: modified src/app/page.tsx 2026-03-19 06:22:32 +00:00
47dac2a834 Merge version_2 into main
Merge version_2 into main
2026-03-19 06:22:28 +00:00
c143a298c9 Update src/app/page.tsx 2026-03-19 06:22:24 +00:00
7a25b04b66 Merge version_2 into main
Merge version_2 into main
2026-03-19 06:22:03 +00:00
b51cb26400 Update src/app/page.tsx 2026-03-19 06:21:59 +00:00
435c74bb3a Merge version_1 into main
Merge version_1 into main
2026-03-19 06:12:54 +00:00
4fe1843a6e Merge version_1 into main
Merge version_1 into main
2026-03-19 06:12:29 +00:00
66f94bf45d Merge version_1 into main
Merge version_1 into main
2026-03-19 06:11:56 +00:00

View File

@@ -3,6 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import HeroSplit from "@/components/sections/hero/HeroSplit";
import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel";
import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree";
import TextAbout from "@/components/sections/about/TextAbout";
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
@@ -55,7 +56,7 @@ export default function LandingPage() {
</div>
<div id="hero" data-section="hero">
<HeroSplit
<HeroBillboardCarousel
title="Experience Culinary Excellence"
description="Daawat Restaurant brings authentic flavors and premium dining to Farrukhabad. Indulge in our meticulously crafted dishes prepared with traditional spices and modern culinary techniques."
tag="Premium Dining"
@@ -66,23 +67,15 @@ export default function LandingPage() {
{ text: "Order Online", href: "#features" },
]}
buttonAnimation="slide-up"
imageSrc="http://img.b2bpic.net/free-photo/close-up-shiny-glassware-standing-dinner-plate_8353-664.jpg"
imageAlt="Luxury restaurant dining ambiance"
mediaAnimation="opacity"
imagePosition="right"
fixedMediaHeight={true}
background={{ variant: "downward-rays-animated" }}
avatars={[
mediaItems={[
{
src: "http://img.b2bpic.net/free-photo/close-up-shiny-glassware-standing-dinner-plate_8353-664.jpg", alt: "Customer 1"},
imageSrc: "http://img.b2bpic.net/free-photo/close-up-shiny-glassware-standing-dinner-plate_8353-664.jpg", imageAlt: "Luxury restaurant dining ambiance"},
{
src: "http://img.b2bpic.net/free-photo/close-up-shiny-glassware-standing-dinner-plate_8353-664.jpg", alt: "Customer 2"},
imageSrc: "http://img.b2bpic.net/free-photo/set-round-table-light-part-restaurant_8353-9919.jpg?_wi=1", imageAlt: "Elegant dining setup"},
{
src: "http://img.b2bpic.net/free-photo/close-up-shiny-glassware-standing-dinner-plate_8353-664.jpg", alt: "Customer 3"},
{
src: "http://img.b2bpic.net/free-photo/close-up-shiny-glassware-standing-dinner-plate_8353-664.jpg", alt: "Customer 4"},
imageSrc: "http://img.b2bpic.net/free-photo/female-chef-kitchen-preparing-plate-steak_23-2149720766.jpg?_wi=1", imageAlt: "Chef preparing signature dish"},
]}
avatarText="4.5 ⭐ from 165 reviews"
background={{ variant: "downward-rays-animated" }}
/>
</div>
@@ -226,7 +219,7 @@ export default function LandingPage() {
{
id: "2", category: "Ambiance", title: "Elegant Dining Atmosphere", excerpt:
"Our restaurant features a warm, sophisticated ambiance perfect for special occasions and everyday celebrations.", imageSrc:
"http://img.b2bpic.net/free-photo/set-round-table-light-part-restaurant_8353-9919.jpg", imageAlt: "Restaurant interior", authorName: "Daawat Team", authorAvatar:
"http://img.b2bpic.net/free-photo/set-round-table-light-part-restaurant_8353-9919.jpg?_wi=2", imageAlt: "Restaurant interior", authorName: "Daawat Team", authorAvatar:
"http://img.b2bpic.net/free-photo/close-up-shiny-glassware-standing-dinner-plate_8353-664.jpg", date: "Dining Experience"},
{
id: "3", category: "Spreads", title: "Feast Your Eyes", excerpt:
@@ -236,7 +229,7 @@ export default function LandingPage() {
{
id: "4", category: "Culinary", title: "Craftsmanship Behind Every Bite", excerpt:
"Our skilled chefs blend tradition with innovation to create unforgettable culinary experiences.", imageSrc:
"http://img.b2bpic.net/free-photo/female-chef-kitchen-preparing-plate-steak_23-2149720766.jpg", imageAlt: "Chef in kitchen", authorName: "Culinary Art", authorAvatar:
"http://img.b2bpic.net/free-photo/female-chef-kitchen-preparing-plate-steak_23-2149720766.jpg?_wi=2", imageAlt: "Chef in kitchen", authorName: "Culinary Art", authorAvatar:
"http://img.b2bpic.net/free-photo/close-up-shiny-glassware-standing-dinner-plate_8353-664.jpg", date: "Behind The Scenes"},
]}
animationType="slide-up"
@@ -305,4 +298,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}