Add src/app/services/page.tsx

This commit is contained in:
2026-03-26 21:48:36 +00:00
parent 9f0d7bf37e
commit bd748e767d

39
src/app/services/page.tsx Normal file
View File

@@ -0,0 +1,39 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import FeatureCardNineteen from "@/components/sections/feature/FeatureCardNineteen";
import FooterCard from "@/components/sections/footer/FooterCard";
import { Layers } from "lucide-react";
export default function ServicesPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/#contact" },
];
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingInline navItems={navItems} brandName="Studio" />
<FeatureCardNineteen
title="Our Professional Services"
description="Comprehensive digital solutions tailored to your business needs."
tag="Expertise"
tagIcon={Layers}
features={[
{ id: 1, tag: "Full Stack", title: "Web Development", description: "High-performance, scalable web solutions.", imageSrc: "/templates/web-agency/process/process1.webp" },
{ id: 2, tag: "Digital", title: "Marketing Strategy", description: "Data-driven marketing to grow your audience.", imageSrc: "/templates/web-agency/process/process2.webp" },
{ id: 3, tag: "Creative", title: "Product Design", description: "User-centered design that delights customers.", imageSrc: "/templates/web-agency/process/process3.webp" }
]}
textboxLayout="default"
useInvertedBackground={false}
/>
<FooterCard logoText="Studio" columns={[{ title: "Links", items: [{ label: "Home", href: "/" }, { label: "About", href: "/about" }] }]} />
</ReactLenis>
</ThemeProvider>
);
}