Update src/app/services/page.tsx

This commit is contained in:
2026-05-28 10:03:41 +00:00
parent b2477e4b3f
commit e0ce30d24e

View File

@@ -4,9 +4,9 @@ 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 FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
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.
import { Sparkles, Wrench, Layers, Search, Palette, Book, Compass } from "lucide-react";
export default function ServicesPage() {
return (
@@ -26,10 +26,10 @@ export default function ServicesPage() {
<NavbarLayoutFloatingOverlay
brandName="Webild"
navItems={[
{ name: "Work", href: "/work" },
{ name: "Services", href: "/services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" }
{ name: "Work", id: "/work" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" }
]}
button={{ text: "Get Started", href: "/#contact" }}
/>
@@ -49,33 +49,44 @@ export default function ServicesPage() {
imageAlt="Services overview"
showDimOverlay={true}
showBlur={false}
testimonials={[
{
name: "Jane Doe", handle: "@janedoe", testimonial: "Webild transformed our online presence! Their team is incredibly talented and delivered exactly what we needed.", rating: 5,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/web-agency-2/team-1.webp", imageAlt: "Jane Doe profile"
}
]}
/>
<FeatureCardThree
<FeatureHoverPattern
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"
icon: Wrench,
title: "Web Design & Development", description: "Crafting beautiful, responsive, and high-performing websites tailored to your brand."
},
{
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"
icon: Layers,
title: "UI/UX Design", description: "Designing intuitive user interfaces and seamless user experiences that engage visitors."
},
{
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"
icon: Search,
title: "Search Engine Optimization (SEO)", description: "Boosting your visibility on search engines to drive organic traffic and leads."
},
{
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"
icon: Palette,
title: "Branding & Identity", description: "Developing strong brand identities that resonate with your target audience."
},
{
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"
icon: Book,
title: "Content Marketing", description: "Creating compelling content strategies that attract, engage, and convert."
},
{
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"
icon: Compass,
title: "Digital Strategy & Consulting", description: "Guiding your digital journey with expert strategy and actionable insights."
}
]}
/>