Update src/app/about/page.tsx

This commit is contained in:
2026-03-28 13:35:23 +00:00
parent a6d93b910b
commit f157e7bdda

View File

@@ -8,7 +8,7 @@ import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSp
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import { Trophy, Users } from "lucide-react";
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
@@ -26,32 +26,15 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Kitchens",
id: "/portfolio",
},
{
name: "Services",
id: "/services",
},
{
name: "Testimonials",
id: "/testimonials",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Kitchens", id: "/portfolio" },
{ name: "Services", id: "/services" },
{ name: "Testimonials", id: "/testimonials" },
{ name: "Contact", id: "/contact" },
]}
brandName="Conway Kitchens"
button={{ text: "Enquire", href: "/contact" }}
/>
</div>
@@ -59,15 +42,8 @@ export default function LandingPage() {
<InlineImageSplitTextAbout
useInvertedBackground={false}
heading={[
{
type: "text",
content: "Generational Expertise Since 1976",
},
{
type: "image",
src: "http://img.b2bpic.net/free-photo/carpenter-with-face-mask-using-laptop-while-working-workshop_637285-11697.jpg",
alt: "Workshop heritage",
},
{ type: "text", content: "Generational Expertise Since 1976" },
{ type: "image", src: "http://img.b2bpic.net/free-photo/carpenter-with-face-mask-using-laptop-while-working-workshop_637285-11697.jpg", alt: "Workshop heritage" },
]}
/>
</div>
@@ -77,16 +53,8 @@ export default function LandingPage() {
useInvertedBackground={false}
title="Company Milestones"
metrics={[
{
icon: Trophy,
label: "Industry Awards",
value: "15+",
},
{
icon: Users,
label: "Team Members",
value: "20+",
},
{ icon: Trophy, label: "Industry Awards", value: "15+" },
{ icon: Users, label: "Team Members", value: "20+" },
]}
metricsAnimation="slide-up"
/>
@@ -95,36 +63,8 @@ export default function LandingPage() {
<div id="site-footer" data-section="site-footer">
<FooterSimple
columns={[
{
title: "Navigation",
items: [
{
label: "About",
href: "/about",
},
{
label: "Portfolio",
href: "/portfolio",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Info",
items: [
{
label: "Established 1976",
href: "#",
},
{
label: "Ballygawley, NI",
href: "#",
},
],
},
{ title: "Navigation", items: [{ label: "About", href: "/about" }, { label: "Portfolio", href: "/portfolio" }, { label: "Contact", href: "/contact" }] },
{ title: "Info", items: [{ label: "Established 1976", href: "#" }, { label: "Ballygawley, NI", href: "#" }] },
]}
bottomLeftText="© 2024 Conway Kitchens."
bottomRightText="All rights reserved."
@@ -133,4 +73,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}