Files
e2ab9fa9-7828-46cb-8948-415…/src/app/case-studies/page.tsx

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