diff --git a/src/app/page.tsx b/src/app/page.tsx
index f318316..7d05efa 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -12,7 +12,7 @@ import ContactText from "@/components/sections/contact/ContactText";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
-import { Star } from "lucide-react";
+import { Star, Globe } from "lucide-react";
export default function HomePage() {
const navItems = [
@@ -21,8 +21,16 @@ export default function HomePage() {
{ name: "Services", id: "services" },
{ name: "Contact", id: "contact" },
{ name: "About", id: "why-us" },
+ { name: "πΈπΌ Kiswahili", id: "#" },
];
+ const handleLanguageChange = (language: string) => {
+ // Store language preference
+ localStorage.setItem('preferredLanguage', language);
+ // Trigger page reload or language change
+ window.location.reload();
+ };
+
return (
@@ -235,13 +163,9 @@ export default function HomePage() {
useInvertedBackground={false}
buttons={[
{
- text: "Reserve a Table",
- href: "#contact",
- },
+ text: "Reserve a Table", href: "#contact"},
{
- text: "Order Now",
- href: "https://wa.me/255655311355",
- },
+ text: "Order Now", href: "https://wa.me/255655311355"},
]}
/>
@@ -252,13 +176,7 @@ export default function HomePage() {
description="Join thousands of satisfied customers who choose Kzone Cafe & Grill daily."
tag="Community Trust"
names={[
- "Google Reviews: 4.7β
",
- "38+ Customer Reviews",
- "24/7 Service",
- "Local Favorite",
- "Fast Delivery",
- "Quality Guaranteed",
- ]}
+ "Google Reviews: 4.7β
", "38+ Customer Reviews", "24/7 Service", "Local Favorite", "Fast Delivery", "Quality Guaranteed"]}
textboxLayout="default"
useInvertedBackground={false}
speed={40}
@@ -272,17 +190,12 @@ export default function HomePage() {
animationType="reveal-blur"
buttons={[
{
- text: "π Call: 0655 311 355",
- href: "tel:0655311355",
- },
+ text: "π Call: 0655 311 355", href: "tel:0655311355"},
{
- text: "π¬ WhatsApp Order",
- href: "https://wa.me/255655311355",
- },
+ text: "π¬ WhatsApp Order", href: "https://wa.me/255655311355"},
]}
background={{
- variant: "plain",
- }}
+ variant: "plain"}}
useInvertedBackground={false}
/>
@@ -293,35 +206,17 @@ export default function HomePage() {
sideDescription="Everything you need to know about Kzone Cafe & Grill services, hours, and ordering."
faqs={[
{
- id: "1",
- title: "What are your operating hours?",
- content: "We are open 24 hours every day! Whether you want breakfast, lunch, dinner, or a late-night snack, we're here for you.",
- },
+ id: "1", title: "What are your operating hours?", content: "We are open 24 hours every day! Whether you want breakfast, lunch, dinner, or a late-night snack, we're here for you."},
{
- id: "2",
- title: "Do you offer delivery?",
- content: "Yes! We offer fast, reliable delivery. Call us at 0655 311 355 or order through WhatsApp. Delivery is available throughout Kigamboni and surrounding areas.",
- },
+ id: "2", title: "Do you offer delivery?", content: "Yes! We offer fast, reliable delivery. Call us at 0655 311 355 or order through WhatsApp. Delivery is available throughout Kigamboni and surrounding areas."},
{
- id: "3",
- title: "What is your drive-through process?",
- content: "Simply drive to our location in Mnadani, Kigamboni. You can order from your car and we'll prepare your food quickly for no-contact pickup.",
- },
+ id: "3", title: "What is your drive-through process?", content: "Simply drive to our location in Mnadani, Kigamboni. You can order from your car and we'll prepare your food quickly for no-contact pickup."},
{
- id: "4",
- title: "Can I make reservations?",
- content: "Yes! For group bookings or reservations, please call us at 0655 311 355. We're happy to accommodate your dining needs.",
- },
+ id: "4", title: "Can I make reservations?", content: "Yes! For group bookings or reservations, please call us at 0655 311 355. We're happy to accommodate your dining needs."},
{
- id: "5",
- title: "What payment methods do you accept?",
- content: "We accept cash and mobile money payments (M-Pesa, Airtel Money). Contact us for payment details or online ordering options.",
- },
+ id: "5", title: "What payment methods do you accept?", content: "We accept cash and mobile money payments (M-Pesa, Airtel Money). Contact us for payment details or online ordering options."},
{
- id: "6",
- title: "Are there dietary options?",
- content: "Yes! We offer various menu options including grilled items, vegetarian sides, and fresh drinks. Contact us to discuss specific dietary requirements.",
- },
+ id: "6", title: "Are there dietary options?", content: "Yes! We offer various menu options including grilled items, vegetarian sides, and fresh drinks. Contact us to discuss specific dietary requirements."},
]}
textPosition="left"
useInvertedBackground={false}
@@ -334,54 +229,33 @@ export default function HomePage() {