Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 50d5751c9c | |||
| ff5d6f95a7 | |||
| 160e6c0508 | |||
| f51e94b0ec | |||
| 57a247d729 | |||
| f01d4f6d0f | |||
| 7837bdd7bd | |||
| f9137e8644 | |||
| 8fc6d3c182 |
1414
src/app/layout.tsx
1414
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -1,5 +1,6 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
|
import { useState } from 'react';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
|
||||||
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
|
||||||
@@ -13,6 +14,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|||||||
import { Armchair, CheckCircle, Clock, Leaf, Shield, Sparkles } from 'lucide-react';
|
import { Armchair, CheckCircle, Clock, Leaf, Shield, Sparkles } from 'lucide-react';
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
|
const [mounted, setMounted] = useState(true);
|
||||||
|
|
||||||
|
if (!mounted) {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="directional-hover"
|
defaultButtonVariant="directional-hover"
|
||||||
@@ -186,10 +193,9 @@ export default function LandingPage() {
|
|||||||
imageAlt="Welcoming cafe entrance"
|
imageAlt="Welcoming cafe entrance"
|
||||||
mediaPosition="right"
|
mediaPosition="right"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
inputPlaceholder="Your email for updates"
|
inputPlaceholder="📍 Belgaum | 📞 +91-9876543210 | ⏰ 6:30 AM - 11:00 PM"
|
||||||
buttonText="Get Updates"
|
buttonText="Reserve Your Table"
|
||||||
termsText="We'll send you special offers and updates about new menu items."
|
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('Email:', email); }}
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user