Update src/app/about/page.tsx

This commit is contained in:
2026-04-22 02:30:56 +00:00
parent 210dc467aa
commit fbca151f77

View File

@@ -8,29 +8,27 @@ import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/Nav
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import { Award } from "lucide-react";
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="shift-hover"
defaultTextAnimation="reveal-blur"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Work",
id: "/",
},
{
name: "About",
id: "/about",
},
{
name: "Contact",
id: "/contact",
},
{ name: "Work", id: "/" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
]}
brandName="Ben McDill"
/>
@@ -55,14 +53,8 @@ export default function LandingPage() {
title="My Philosophy"
description="I believe in the power of visual silence and rhythmic editing."
metrics={[
{
value: "100%",
title: "Authenticity",
},
{
value: "24fps",
title: "Classic Feel",
},
{ value: "100%", title: "Authenticity" },
{ value: "24fps", title: "Classic Feel" },
]}
imageSrc="http://img.b2bpic.net/free-photo/young-attractive-student-is-carrying-special-lamp-while-posing-photographer_613910-12972.jpg"
mediaAnimation="slide-up"
@@ -72,30 +64,14 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="http://img.b2bpic.net/free-photo/solid-green-wall-textured-backdrop_53876-143106.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/solid-green-wall-textured-backdrop_53876-143106.jpg"
logoText="BM"
columns={[
{
title: "Navigation",
items: [
{
label: "Work",
href: "/",
},
{
label: "About",
href: "/about",
},
{
label: "Contact",
href: "/contact",
},
],
},
{ title: "Navigation", items: [{ label: "Work", href: "/" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}
}