Add src/app/services-about/page.tsx
This commit is contained in:
43
src/app/services-about/page.tsx
Normal file
43
src/app/services-about/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user