80 lines
3.4 KiB
TypeScript
80 lines
3.4 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import ReactLenis from "lenis/react";
|
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
|
import TeamCardFive from '@/components/sections/team/TeamCardFive';
|
|
|
|
export default function AboutPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="shift-hover"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="rounded"
|
|
contentWidth="medium"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="noiseDiagonalGradient"
|
|
cardStyle="gradient-bordered"
|
|
primaryButtonStyle="primary-glow"
|
|
secondaryButtonStyle="layered"
|
|
headingFontWeight="bold"
|
|
>
|
|
<ReactLenis root>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
navItems={[
|
|
{ name: "Home", id: "/" },
|
|
{ name: "Products", id: "/products" },
|
|
{ name: "Services", id: "/services" },
|
|
{ name: "About", id: "/about" },
|
|
{ name: "Contact", id: "/contact" },
|
|
]}
|
|
brandName="Mwanzo Paints"
|
|
button={{ text: "Get Quote", href: "/contact" }}
|
|
/>
|
|
</div>
|
|
|
|
<div id="about-body" data-section="about-body">
|
|
<InlineImageSplitTextAbout
|
|
useInvertedBackground={false}
|
|
heading={[
|
|
{ type: "text", content: "About Mwanzo Paints Limited" },
|
|
{ type: "image", src: "http://img.b2bpic.net/free-photo/plant-pot-defying-laws-gravity-by-floating-air_23-2151122887.jpg", alt: "Store interior" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="team" data-section="team">
|
|
<TeamCardFive
|
|
animationType="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
title="Our Expert Team"
|
|
description="Meet the professionals behind your home's transformation."
|
|
team={[
|
|
{ id: "t1", name: "John Doe", role: "Lead Architect", imageSrc: "http://img.b2bpic.net/free-photo/portrait-smiling-young-architect-man-showing-thumb-up-gesture-looking-camera_23-2148203957.jpg" },
|
|
{ id: "t2", name: "Jane Smith", role: "Interior Designer", imageSrc: "http://img.b2bpic.net/free-photo/smiling-businesswoman-city-with-blurred-background_1139-257.jpg" },
|
|
{ id: "t3", name: "Robert K.", role: "Logistics Manager", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-portrait-construction-engineer-talking-phone_23-2148233685.jpg" },
|
|
{ id: "t4", name: "Alice W.", role: "Sales Specialist", imageSrc: "http://img.b2bpic.net/free-photo/portrait-young-confident-asian-businesswoman-cross-arms-chest-looking-confident-standing-near_1258-198997.jpg?_wi=1" },
|
|
{ id: "t5", name: "Mark O.", role: "Installation Expert", imageSrc: "http://img.b2bpic.net/free-photo/happy-builder-hardhat_1398-1730.jpg" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterSimple
|
|
columns={[
|
|
{ title: "Company", items: [{ label: "About Us", href: "/about" }, { label: "Contact", href: "/contact" }] },
|
|
{ title: "Services", items: [{ label: "Consultation", href: "/services" }, { label: "Delivery", href: "/services" }] },
|
|
]}
|
|
bottomLeftText="© 2024 Mwanzo Paints Limited, Kitale, Kenya."
|
|
bottomRightText="Built with quality."
|
|
/>
|
|
</div>
|
|
</ReactLenis>
|
|
</ThemeProvider>
|
|
);
|
|
}
|