Merge version_3 into main #6
@@ -1,6 +1,6 @@
|
||||
"use client";
|
||||
|
||||
import { useEffect, useState } from 'react';
|
||||
import { useState } from 'react';
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||
@@ -11,14 +11,10 @@ import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import { Armchair, CheckCircle, Clock, Leaf, Shield, Sparkles, MapPin, Clock as ClockIcon, Phone } from 'lucide-react';
|
||||
import { Armchair, CheckCircle, Clock, Leaf, Shield, Sparkles } from 'lucide-react';
|
||||
|
||||
export default function LandingPage() {
|
||||
const [mounted, setMounted] = useState(false);
|
||||
|
||||
useEffect(() => {
|
||||
setMounted(true);
|
||||
}, []);
|
||||
const [mounted, setMounted] = useState(true);
|
||||
|
||||
if (!mounted) {
|
||||
return null;
|
||||
@@ -200,7 +196,6 @@ export default function LandingPage() {
|
||||
inputPlaceholder="📍 Belgaum | 📞 +91-9876543210 | ⏰ 6:30 AM - 11:00 PM"
|
||||
buttonText="Reserve Your Table"
|
||||
termsText="Call us at +91-9876543210 or visit us directly. We're open daily from 6:30 AM to 11:00 PM. Located in the heart of Belgaum with easy parking."
|
||||
onSubmit={(email: string) => { console.log('Reservation request:', email); }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user