Update src/app/about/page.tsx

This commit is contained in:
2026-04-17 11:56:00 +00:00
parent f4952c7394
commit efb21aaffe

View File

@@ -7,7 +7,7 @@ import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -25,30 +25,12 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarStyleApple
navItems={[
{
name: "Home",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Gallery",
id: "/gallery",
},
{
name: "Services",
id: "/services",
},
{
name: "Process",
id: "/process",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Home", id: "/" },
{ name: "About", id: "/about" },
{ name: "Gallery", id: "/gallery" },
{ name: "Services", id: "/services" },
{ name: "Process", id: "/process" },
{ name: "Contact", id: "/contact" }
]}
brandName="The Backyard Taxidermist"
/>
@@ -60,20 +42,11 @@ export default function LandingPage() {
title="Meet Brian Turek"
description="With years of expertise and a passion for wildlife preservation, Brian treats every client's trophy with the care it deserves."
metrics={[
{
value: "15+",
title: "Years Experience",
},
{
value: "500+",
title: "Successful Mounts",
},
{
value: "95%",
title: "Repeat Clients",
},
{ value: "15+", title: "Years Experience" },
{ value: "500+", title: "Successful Mounts" },
{ value: "95%", title: "Repeat Clients" }
]}
imageSrc="http://img.b2bpic.net/free-photo/full-shot-woman-sitting-desk_23-2148944946.jpg"
imageSrc="asset://about-brian__2"
mediaAnimation="slide-up"
metricsAnimation="slide-up"
/>
@@ -87,30 +60,8 @@ export default function LandingPage() {
title="Our Philosophy"
description="Building trust through transparent processes and artistic dedication."
features={[
{
title: "Integrity",
description: "Honesty in every interaction.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/stylish-blonde-female-dressed-old-fashioned-jacket-holds-red-badger-dog_613910-16030.jpg",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/portrait-hunter-man-holds-deer-s-skull_613910-2917.jpg",
},
imageSrc: "http://img.b2bpic.net/free-photo/front-view-arrangement-animals-day_23-2149058026.jpg?_wi=1",
imageAlt: "Front view arrangement for animals day",
},
{
title: "Quality",
description: "Unmatched craftsmanship.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/stylish-blonde-female-dressed-old-fashioned-jacket-holds-red-badger-dog_613910-719.jpg",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/elegant-woman-black-suit-with-black-bulldog_1157-33148.jpg",
},
imageSrc: "http://img.b2bpic.net/free-photo/artisan-doing-woodcutting_23-2150600789.jpg?_wi=4",
imageAlt: "Front view arrangement for animals day",
},
{ title: "Integrity", description: "Honesty in every interaction.", phoneOne: { imageSrc: "asset://gen-stock-rsv-34" }, phoneTwo: { imageSrc: "asset://gen-stock-rsv-35" } },
{ title: "Quality", description: "Unmatched craftsmanship.", phoneOne: { imageSrc: "asset://gen-stock-rsv-36" }, phoneTwo: { imageSrc: "asset://gen-stock-rsv-37" } }
]}
showStepNumbers={false}
/>
@@ -119,55 +70,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="The Backyard Taxidermist"
columns={[
{
title: "Quick Links",
items: [
{
label: "About",
href: "/about",
},
{
label: "Gallery",
href: "/gallery",
},
{
label: "Contact",
href: "/contact",
},
],
},
{
title: "Services",
items: [
{
label: "Shoulder Mounts",
href: "/services",
},
{
label: "Bear Rugs",
href: "/services",
},
{
label: "Custom Work",
href: "/services",
},
],
},
{
title: "Contact Info",
items: [
{
label: "Phone: (555) 123-4567",
href: "#",
},
{
label: "Email: brian@backyardtaxidermist.com",
href: "mailto:brian@backyardtaxidermist.com",
},
],
},
]}
columns={[{ title: "Quick Links", items: [{ label: "About", href: "/about" }, { label: "Gallery", href: "/gallery" }, { label: "Contact", href: "/contact" }] }, { title: "Services", items: [{ label: "Shoulder Mounts", href: "/services" }, { label: "Bear Rugs", href: "/services" }, { label: "Custom Work", href: "/services" }] }, { title: "Contact Info", items: [{ label: "Phone: (555) 123-4567", href: "#" }, { label: "Email: brian@backyardtaxidermist.com", href: "mailto:brian@backyardtaxidermist.com" }] }]}
copyrightText="© 2024 The Backyard Taxidermist. All rights reserved."
/>
</div>