Update src/app/services/page.tsx
This commit is contained in:
@@ -3,8 +3,8 @@
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import { Film, Tv, DollarSign } from "lucide-react";
|
||||
|
||||
export default function ServicesPage() {
|
||||
@@ -17,69 +17,48 @@ export default function ServicesPage() {
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="metallic"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
headingFontWeight="normal"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Webild"
|
||||
navItems={[
|
||||
{ name: "Work", id: "/work" },
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
]}
|
||||
button={{ text: "Get Started", href: "/contact" }}
|
||||
/>
|
||||
<div className="pt-32 pb-20">
|
||||
<FeatureBento
|
||||
<div id="services" data-section="services" className="pt-32 pb-20">
|
||||
<FeatureHoverPattern
|
||||
title="Our Specialized Services"
|
||||
description="Expert consulting tailored for the film and entertainment industry."
|
||||
textboxLayout="default"
|
||||
animationType="slide-up"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Film Production Consulting", description: "End-to-end production guidance, from script development and pre-production planning to final delivery, ensuring your vision is executed efficiently.", bentoComponent: "reveal-icon", icon: Film,
|
||||
title: "Film Production Consulting", description: "End-to-end production guidance, from script development to final delivery.", icon: Film,
|
||||
},
|
||||
{
|
||||
title: "Distribution Consulting", description: "Strategic roadmap for global distribution, navigating complex markets, securing theatrical or streaming deals, and maximizing audience reach for your project.", bentoComponent: "reveal-icon", icon: Tv,
|
||||
title: "Distribution Consulting", description: "Strategic roadmap for global distribution and audience reach.", icon: Tv,
|
||||
},
|
||||
{
|
||||
title: "Financing Consulting", description: "Expertise in securing production capital, navigating tax incentives, gap financing, and developing investor decks that resonate with industry stakeholders.", bentoComponent: "reveal-icon", icon: DollarSign,
|
||||
title: "Financing Consulting", description: "Expertise in securing production capital and navigating incentives.", icon: DollarSign,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<FooterBase
|
||||
logoText="Webild"
|
||||
copyrightText="© 2026 | Webild"
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Work", href: "/work" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Film Production", href: "/services" },
|
||||
{ label: "Distribution", href: "/services" },
|
||||
{ label: "Financing", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Twitter", href: "#" },
|
||||
{ label: "LinkedIn", href: "#" },
|
||||
{ label: "Instagram", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
logoText="Webild"
|
||||
copyrightText="© 2026 | Webild"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user