Update src/app/page.tsx

This commit is contained in:
2026-01-09 11:38:54 +00:00
parent 14ae5e11b3
commit c6d51fafa7

View File

@@ -1,4 +1,4 @@
"use client"
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
@@ -10,7 +10,7 @@ import BlogCardEleven from '@/components/sections/blog/BlogCardEleven';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import { Clapperboard, Film, Mail } from "lucide-react";
import { Clapperboard, Film, Mail, MessageCircle } from "lucide-react";
export default function LandingPage() {
return (
@@ -29,8 +29,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleMinimal
brandName="CineGuide"
navItems={[
{ name: "Featured", id: "featured" },
{ name: "Reviews", id: "blog" },
{ name: "Contact", id: "contact-faq" }
]}
button={{
text: "Start Browsing Films", href: "#hero"
text: "Start Browsing Films", href: "#hero", icon: MessageCircle
}}
/>
</div>
@@ -272,4 +277,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}