Add src/app/services/page.tsx

This commit is contained in:
2026-05-28 10:02:52 +00:00
parent d66ba1ec13
commit 3dd799b2bf

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

@@ -0,0 +1,116 @@
"use client";
import ReactLenis from "lenis/react";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroOverlayTestimonial from '@/components/sections/hero/HeroOverlayTestimonial';
import FeatureCardThree from '@/components/sections/feature/FeatureCardThree';
import FooterBase from "@/components/sections/footer/FooterBase";
import { Sparkles } from "lucide-react"; // Only import Sparkles if it's used, no other icons needed for this page.
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", href: "/work" },
{ name: "Services", href: "/services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" }
]}
button={{ text: "Get Started", href: "/#contact" }}
/>
<HeroOverlayTestimonial
title="Our Services"
description="Comprehensive solutions to elevate your digital presence and achieve your business goals."
tag="Expert Craftsmanship"
tagIcon={Sparkles}
tagAnimation="slide-up"
buttons={[
{ text: "Get a Quote", href: "/#contact" },
{ text: "View Our Work", href: "/work" }
]}
buttonAnimation="slide-up"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/services-hero.webp"
imageAlt="Services overview"
showDimOverlay={true}
showBlur={false}
/>
<FeatureCardThree
title="What We Offer"
description="From concept to launch, we provide end-to-end services designed for digital success."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
gridVariant="three-columns-all-equal-width"
features={[
{
title: "Web Design & Development", description: "Crafting beautiful, responsive, and high-performing websites tailored to your brand.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/dev-2.webp", imageAlt: "Web development service"
},
{
title: "UI/UX Design", description: "Designing intuitive user interfaces and seamless user experiences that engage visitors.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-6.webp", imageAlt: "UI UX Design service"
},
{
title: "Search Engine Optimization (SEO)", description: "Boosting your visibility on search engines to drive organic traffic and leads.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-9.webp", imageAlt: "SEO service"
},
{
title: "Branding & Identity", description: "Developing strong brand identities that resonate with your target audience.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/project-1.webp", imageAlt: "Branding service"
},
{
title: "Content Marketing", description: "Creating compelling content strategies that attract, engage, and convert.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/blog-1.webp", imageAlt: "Content marketing service"
},
{
title: "Digital Strategy & Consulting", description: "Guiding your digital journey with expert strategy and actionable insights.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/shot-4.webp", imageAlt: "Digital strategy service"
}
]}
/>
<FooterBase
logoText="Webild"
copyrightText="© 2026 | Webild"
columns={[
{
title: "Company", items: [
{ label: "About", href: "/#about" },
{ label: "Services", href: "/services" },
{ label: "Work", href: "/work" },
{ label: "Contact", href: "/#contact" }
]
},
{
title: "Services", items: [
{ label: "Web Development", href: "/services" },
{ label: "SEO", href: "/services" },
{ label: "Branding", href: "/services" },
{ label: "UI/UX Design", href: "/services" }
]
},
{
title: "Connect", items: [
{ label: "Twitter", href: "#" },
{ label: "LinkedIn", href: "#" },
{ label: "Instagram", href: "#" },
{ label: "Dribbble", href: "#" }
]
}
]}
/>
</ReactLenis>
</ThemeProvider>
);
}