Merge version_2 into main

Merge version_2 into main
This commit was merged in pull request #1.
This commit is contained in:
2026-01-09 11:38:59 +00:00
2 changed files with 10 additions and 5 deletions

View File

@@ -1264,4 +1264,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

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>
);
}
}