Switch to version 1: modified src/app/page.tsx

This commit is contained in:
2026-03-19 18:03:48 +00:00
parent c289b1afd4
commit 6f70b07bb5

View File

@@ -10,7 +10,7 @@ import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCar
import FaqBase from "@/components/sections/faq/FaqBase";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterMedia from "@/components/sections/footer/FooterMedia";
import { Flame, Star, UtensilsCrossed, Heart, HelpCircle, Phone, Mail, MapPin, Clock } from "lucide-react";
import { Flame, Star, UtensilsCrossed, Heart, HelpCircle, Phone } from "lucide-react";
export default function LandingPage() {
return (
@@ -224,14 +224,14 @@ export default function LandingPage() {
<ContactCenter
tag="Get in Touch"
title="Reserve Your Table or Place an Order"
description="Experience authentic multicuisine dining at Zaatar. Reserve a table for your next celebration, or order your favorite dishes for delivery today. Connect with us through phone, email, or visit our restaurant."
description="Experience authentic multicuisine dining at Zaatar. Reserve a table for your next celebration, or order your favorite dishes for delivery today."
tagIcon={Phone}
tagAnimation="slide-up"
background={{ variant: "plain" }}
useInvertedBackground={false}
inputPlaceholder="Enter your email or phone number"
buttonText="Get Started"
termsText="By contacting Zaatar, you agree to our booking and ordering policies. Our team will reach out within 2 hours during business hours."
termsText="By contacting Zaatar, you agree to our booking and ordering policies."
ariaLabel="Contact and reservation form"
/>
</div>
@@ -241,7 +241,7 @@ export default function LandingPage() {
imageSrc="http://img.b2bpic.net/free-photo/life-style_1122-1806.jpg"
imageAlt="restaurant interior warm lighting ambiance"
logoText="Zaatar"
copyrightText="© 2025 Zaatar Multicuisine Restaurant | All Rights Reserved | Bengaluru"
copyrightText="© 2025 Zaatar Multicuisine Restaurant | Bengaluru"
columns={[
{
title: "Quick Links", items: [
@@ -255,22 +255,22 @@ export default function LandingPage() {
title: "Services", items: [
{ label: "Online Ordering", href: "#contact" },
{ label: "Table Reservation", href: "#contact" },
{ label: "Catering Services", href: "#contact" },
{ label: "Corporate Events", href: "#contact" }
{ label: "Catering", href: "#contact" },
{ label: "Events", href: "#contact" }
]
},
{
title: "Connect With Us", items: [
{ label: "Instagram", href: "https://instagram.com/zaatar" },
{ label: "Facebook", href: "https://facebook.com/zaatar" },
{ label: "Email: info@zaatar.in", href: "mailto:info@zaatar.in" },
{ label: "Phone: +91 80 1234 5678", href: "tel:+918012345678" }
title: "Connect", items: [
{ label: "Instagram", href: "https://instagram.com" },
{ label: "Facebook", href: "https://facebook.com" },
{ label: "Email", href: "mailto:info@zaatar.in" },
{ label: "Phone", href: "tel:+919876543210" }
]
}
]}
ariaLabel="Site footer with navigation and contact information"
ariaLabel="Site footer with navigation and contact"
/>
</div>
</ThemeProvider>
);
}
}