Add src/app/about/page.tsx
This commit is contained in:
104
src/app/about/page.tsx
Normal file
104
src/app/about/page.tsx
Normal file
@@ -0,0 +1,104 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
|
import ReactLenis from "lenis/react";
|
||||||
|
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||||
|
import FooterSimple from "@/components/sections/footer/FooterSimple";
|
||||||
|
import InlineImageSplitTextAbout from "@/components/sections/about/InlineImageSplitTextAbout";
|
||||||
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||||
|
|
||||||
|
export default function AboutPage() {
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="hover-bubble"
|
||||||
|
defaultTextAnimation="entrance-slide"
|
||||||
|
borderRadius="soft"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="mediumLargeSizeMediumTitles"
|
||||||
|
background="noiseDiagonalGradient"
|
||||||
|
cardStyle="glass-depth"
|
||||||
|
primaryButtonStyle="flat"
|
||||||
|
secondaryButtonStyle="layered"
|
||||||
|
headingFontWeight="extrabold"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleApple
|
||||||
|
navItems={[
|
||||||
|
{
|
||||||
|
name: "Home", id: "/"},
|
||||||
|
{
|
||||||
|
name: "About Us", id: "/about"},
|
||||||
|
{
|
||||||
|
name: "Services", id: "/#services"},
|
||||||
|
{
|
||||||
|
name: "Clients", id: "/#clients"},
|
||||||
|
{
|
||||||
|
name: "Team", id: "/#team"},
|
||||||
|
{
|
||||||
|
name: "Contact", id: "/contact-us"},
|
||||||
|
]}
|
||||||
|
brandName="ZConsulting"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="about" data-section="about">
|
||||||
|
<InlineImageSplitTextAbout
|
||||||
|
useInvertedBackground={true}
|
||||||
|
heading={[
|
||||||
|
{
|
||||||
|
type: "text", content: "About "},
|
||||||
|
{
|
||||||
|
type: "image", src: "http://img.b2bpic.net/free-photo/colleagues-smiling-speaking-discussing-drawings-new-ideas_176420-1680.jpg", alt: "ZConsulting team meeting"},
|
||||||
|
{
|
||||||
|
type: "text", content: "ZConsulting: Your Strategic Marketing Partner"},
|
||||||
|
]}
|
||||||
|
buttons={[
|
||||||
|
{
|
||||||
|
text: "Our Services", href: "/#services"},
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterSimple
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Services", items: [
|
||||||
|
{
|
||||||
|
label: "SEO", href: "/#services"},
|
||||||
|
{
|
||||||
|
label: "Social Media", href: "/#services"},
|
||||||
|
{
|
||||||
|
label: "Content Marketing", href: "/#services"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{
|
||||||
|
label: "About Us", href: "/about"},
|
||||||
|
{
|
||||||
|
label: "Team", href: "/#team"},
|
||||||
|
{
|
||||||
|
label: "Contact", href: "/contact-us"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Resources", items: [
|
||||||
|
{
|
||||||
|
label: "Blog", href: "#"},
|
||||||
|
{
|
||||||
|
label: "Case Studies", href: "#"},
|
||||||
|
{
|
||||||
|
label: "FAQ", href: "#"},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
bottomLeftText="© 2024 ZConsulting. All rights reserved."
|
||||||
|
bottomRightText="Crafted with passion in Morocco."
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user