Update src/app/about/page.tsx

This commit is contained in:
2026-04-07 18:29:31 +00:00
parent d2cd26f3aa
commit f4193fb839

View File

@@ -7,7 +7,7 @@ import MetricCardSeven from '@/components/sections/metrics/MetricCardSeven';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="text-shift"
@@ -25,24 +25,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Services",
id: "/services",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "Services", id: "/services" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Davis Roofing"
button={{ text: "Contact", href: "/contact" }}
/>
</div>
@@ -50,22 +39,13 @@ export default function LandingPage() {
<MetricSplitMediaAbout
useInvertedBackground={false}
title="About Davis Roofing & Contracting"
description="Davis Roofing & Contracting brings over 40 years of experience serving homeowners and businesses across Idaho. We are committed to reliable, high-quality results."
description="Experience you can trust."
metrics={[
{
value: "40+",
title: "Years Experience",
},
{
value: "100%",
title: "Licensed & Insured",
},
{
value: "ID",
title: "Serving Idaho",
},
{ value: "40+", title: "Years Experience" },
{ value: "100%", title: "Licensed & Insured" },
{ value: "ID", title: "Serving Idaho" }
]}
imageSrc="http://img.b2bpic.net/free-photo/man-working-roof-with-drill-low-view_23-2148748772.jpg?_wi=3"
imageSrc="http://img.b2bpic.net/free-photo/man-working-roof-with-drill-low-view_23-2148748772.jpg"
mediaAnimation="blur-reveal"
metricsAnimation="slide-up"
/>
@@ -77,26 +57,10 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={false}
title="Our Core Values"
description="The principles that drive our high-end contracting work."
description="Principles that drive us."
metrics={[
{
id: "v1",
value: "40+",
title: "Expertise",
items: [
"Deep regional knowledge",
"Industry standards",
],
},
{
id: "v2",
value: "100%",
title: "Integrity",
items: [
"Clear pricing",
"Quality materials",
],
},
{ id: "v1", value: "40+", title: "Expertise", items: ["Deep knowledge", "Standards"] },
{ id: "v2", value: "100%", title: "Integrity", items: ["Pricing", "Materials"] }
]}
/>
</div>
@@ -105,36 +69,8 @@ export default function LandingPage() {
<FooterBaseReveal
logoText="Davis Roofing & Contracting"
columns={[
{
title: "Company",
items: [
{
label: "About",
href: "/about",
},
{
label: "Services",
href: "/services",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Legal",
items: [
{
label: "Privacy Policy",
href: "#",
},
{
label: "Terms & Conditions",
href: "#",
},
],
},
{ title: "Company", items: [{ label: "About", href: "/about" }, { label: "Services", href: "/services" }, { label: "Contact", href: "/contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "#" }, { label: "Terms & Conditions", href: "#" }] }
]}
copyrightText="© 2024 Davis Roofing & Contracting. All Rights Reserved."
/>