Update src/app/about/page.tsx

This commit is contained in:
2026-04-16 15:53:44 +00:00
parent 93be5c9ab1
commit 0cb909a95e

View File

@@ -7,7 +7,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
@@ -25,28 +25,14 @@ export default function LandingPage() {
<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",
},
{ 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>
@@ -54,15 +40,8 @@ export default function LandingPage() {
<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",
},
{ 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>
@@ -75,36 +54,11 @@ export default function LandingPage() {
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",
},
{ 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" },
{ id: "t5", name: "Mark O.", role: "Installation Expert", imageSrc: "http://img.b2bpic.net/free-photo/happy-builder-hardhat_1398-1730.jpg" },
]}
/>
</div>
@@ -112,32 +66,8 @@ export default function LandingPage() {
<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",
},
],
},
{ 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."