Add src/app/services/page.tsx

This commit is contained in:
2026-04-08 09:25:03 +00:00
parent 1148acb4af
commit ed269c8274

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

@@ -0,0 +1,52 @@
"use client";
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 ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBase from "@/components/sections/footer/FooterBase";
import { Search, Monitor, Palette } from "lucide-react";
export default function ServicesPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "/#work" },
{ name: "Services", id: "/services" },
{ name: "Reviews", id: "/reviews" },
{ name: "About", id: "/#about" },
{ name: "Contact", id: "/#contact" },
]}
button={{ text: "Get Started", href: "/#contact" }}
/>
<FeatureBento
title="Our Comprehensive Services"
description="We provide end-to-end digital solutions designed to grow your business and improve your local search rankings."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
features={[
{ id: "seo", title: "Local SEO Optimization", descriptions: ["Boost your local visibility", "Google Business Profile management", "Local keyword research"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp" },
{ id: "web", title: "Custom Web Development", descriptions: ["Responsive design", "Fast performance optimization", "SEO-friendly architecture"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp" },
{ id: "brand", title: "Branding & UI/UX", descriptions: ["Unique visual identities", "User-centric design flows", "Conversion-focused layouts"], imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-1.webp" }
]}
/>
<ContactCTA
title="Ready to scale your business?"
text="Let's discuss how our services can help you dominate your local market."
background={{ variant: "rotated-rays-animated" }}
/>
<FooterBase
logoText="Webild"
columns={[
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Services", href: "/services" }, { label: "Reviews", href: "/reviews" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);
}