21 lines
1.2 KiB
TypeScript
21 lines
1.2 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
|
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
|
|
|
export default function CaseStudiesPage() {
|
|
return (
|
|
<ThemeProvider>
|
|
<ReactLenis root>
|
|
<NavbarStyleFullscreen navItems={[{name: "Services", id: "/services"}, {name: "Process", id: "/#process"}, {name: "Case Studies", id: "/case-studies"}, {name: "Contact", id: "/contact"}]} brandName="Spanks" />
|
|
<main className="py-24 px-6">
|
|
<h1 className="text-4xl font-bold mb-8">Case Studies</h1>
|
|
<p>Explore how we've helped leading companies achieve operational excellence and massive growth through our custom solutions.</p>
|
|
</main>
|
|
<FooterBaseReveal logoText="Spanks" columns={[{title: "Agency", items: [{label: "Services", href: "/services"}, {label: "About", href: "/#about"}]}, {title: "Legal", items: [{label: "Privacy", href: "/privacy"}, {label: "Terms", href: "/terms"}]}]} />
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
} |