Add src/app/services-about/page.tsx

This commit is contained in:
2026-04-08 14:19:09 +00:00
parent db21e9655c
commit b011e9ef08

View File

@@ -0,0 +1,43 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
import FeatureBento from "@/components/sections/feature/FeatureBento";
import FooterBase from "@/components/sections/footer/FooterBase";
import ReactLenis from "lenis/react";
export default function ServicesAboutPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarLayoutFloatingOverlay
navItems={[
{ name: "Work", id: "work" },
{ name: "Services", id: "services" },
{ name: "About", id: "about" },
{ name: "Contact", id: "contact" },
{ name: "Products", id: "/products" },
{ name: "Services Info", id: "/services-about" },
]}
/>
<TextSplitAbout
title="Our Story"
description={["Founded in 2018, Webild began with a simple mission: to empower businesses with high-impact digital solutions.", "Our diverse team of experts is dedicated to pushing creative boundaries and delivering exceptional results that drive growth."]}
/>
<FeatureBento
title="Services Overview"
description="Expertise across the digital spectrum."
textboxLayout="default"
useInvertedBackground={false}
animationType="slide-up"
features={[]}
/>
<FooterBase
logoText="Webild"
columns={[]}
/>
</ReactLenis>
</ThemeProvider>
);
}