Add src/app/case-studies/page.tsx

This commit is contained in:
2026-05-18 10:57:31 +00:00
parent 93375bfc0a
commit ce3ffe71fe

View File

@@ -0,0 +1,21 @@
"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>
);
}