Files
668dcf48-ca57-4abe-984e-e39…/src/app/services/page.tsx

78 lines
3.4 KiB
TypeScript

"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import FooterBase from "@/components/sections/footer/FooterBase";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FeatureBento from "@/components/sections/feature/FeatureBento";
import { Search } from "lucide-react";
export default function ServicesPage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="metallic"
secondaryButtonStyle="glass"
headingFontWeight="medium"
>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
button={{ text: "Get Started", href: "/contact" }}
/>
<FeatureBento
title="Our Services"
description="Full suite of digital capabilities."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
className="pt-32"
features={[
{
title: "SEO", description: "Strategic search optimization to drive organic growth.", bentoComponent: "marquee", centerIcon: Search,
variant: "text", texts: ["Keywords", "Backlinks", "Meta Tags", "Rankings", "Analytics"],
},
{
title: "Web Development", description: "Custom high-performance web solutions.", bentoComponent: "media-stack", items: [
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp?_wi=1", imageAlt: "Dev 1" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-1.webp", imageAlt: "Dev 2" },
{ imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp?_wi=2", imageAlt: "Dev 3" },
],
},
]}
/>
<ContactCTA
title="Ready to Start?"
description="Let's discuss how we can help your brand."
tag="Contact"
useInvertedBackground={false}
background={{ variant: "rotated-rays-animated" }}
buttons={[{ text: "Get Started", href: "/contact" }]}
/>
<FooterBase
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={[
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
{ title: "Services", items: [{ label: "Web Development", href: "/services" }, { label: "SEO", href: "/services" }] },
{ title: "Connect", items: [{ label: "Twitter", href: "#" }, { label: "LinkedIn", href: "#" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}