Update src/app/resume/page.tsx

This commit is contained in:
2026-04-30 14:40:45 +00:00
parent 0e9fc296b9
commit 10ed043bc3

View File

@@ -8,7 +8,7 @@ import MediaAbout from '@/components/sections/about/MediaAbout';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
export default function LandingPage() {
export default function ResumePage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
@@ -26,24 +26,13 @@ export default function LandingPage() {
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
navItems={[
{
name: "Home",
id: "/",
},
{
name: "Blog",
id: "/blog",
},
{
name: "Resume",
id: "/resume",
},
{
name: "Sandbox",
id: "/sandbox",
},
{ name: "Home", id: "/" },
{ name: "Blog", id: "/blog" },
{ name: "Resume", id: "/resume" },
{ name: "Sandbox", id: "/sandbox" },
]}
brandName="Portfolio"
button={{ text: "Home", href: "/" }}
/>
</div>
@@ -52,7 +41,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="My Resume"
description="A summary of my experience in marketing and management, currently transitioning towards full-stack development and AI integration."
imageSrc="http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797628.jpg?_wi=2"
imageSrc="http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797628.jpg"
/>
</div>
@@ -63,20 +52,8 @@ export default function LandingPage() {
title="Core Competencies"
description="My professional stack."
features={[
{
tag: "Skills",
title: "Marketing Strategy",
subtitle: "Analytical",
description: "Growth focused.",
imageSrc: "http://img.b2bpic.net/free-photo/futuristic-business-environment_23-2150970237.jpg",
},
{
tag: "Tech",
title: "Management",
subtitle: "Leadership",
description: "Agile methodologies.",
imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797646.jpg",
},
{ tag: "Skills", title: "Marketing Strategy", subtitle: "Analytical", description: "Growth focused.", imageSrc: "http://img.b2bpic.net/free-photo/futuristic-business-environment_23-2150970237.jpg" },
{ tag: "Tech", title: "Management", subtitle: "Leadership", description: "Agile methodologies.", imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797646.jpg" },
]}
/>
</div>
@@ -89,66 +66,18 @@ export default function LandingPage() {
title="Recommendations"
description="Verified reviews from colleagues."
testimonials={[
{
id: "r1",
name: "Mark D.",
handle: "@markd",
testimonial: "Excellent manager.",
imageSrc: "http://img.b2bpic.net/free-photo/ai-cloud-with-robot-face_23-2149739758.jpg",
},
{
id: "r2",
name: "Lisa G.",
handle: "@lisag",
testimonial: "Top-tier strategist.",
imageSrc: "http://img.b2bpic.net/free-photo/ai-robotic-operations-tablet_1387-647.jpg",
},
{
id: "r3",
name: "Rob C.",
handle: "@robc",
testimonial: "Reliable.",
imageSrc: "http://img.b2bpic.net/free-photo/robot-character-cracked-surface_1048-12073.jpg",
},
{
id: "r4",
name: "Jane H.",
handle: "@janeh",
testimonial: "Creative.",
imageSrc: "http://img.b2bpic.net/free-photo/creative-woman-working-computer_53876-96942.jpg?_wi=1",
},
{
id: "r5",
name: "Tom B.",
handle: "@tomb",
testimonial: "Driven.",
imageSrc: "http://img.b2bpic.net/free-photo/3d-render-digital-technology-background-network-communications-sound-waves_1048-13254.jpg?_wi=1",
},
{ id: "r1", name: "Mark D.", handle: "@markd", testimonial: "Excellent manager.", imageSrc: "http://img.b2bpic.net/free-photo/ai-cloud-with-robot-face_23-2149739758.jpg" },
{ id: "r2", name: "Lisa G.", handle: "@lisag", testimonial: "Top-tier strategist.", imageSrc: "http://img.b2bpic.net/free-photo/ai-robotic-operations-tablet_1387-647.jpg" },
{ id: "r3", name: "Rob C.", handle: "@robc", testimonial: "Reliable.", imageSrc: "http://img.b2bpic.net/free-photo/robot-character-cracked-surface_1048-12073.jpg" },
{ id: "r4", name: "Jane H.", handle: "@janeh", testimonial: "Creative.", imageSrc: "http://img.b2bpic.net/free-photo/creative-woman-working-computer_53876-96942.jpg" },
{ id: "r5", name: "Tom B.", handle: "@tomb", testimonial: "Driven.", imageSrc: "http://img.b2bpic.net/free-photo/3d-render-digital-technology-background-network-communications-sound-waves_1048-13254.jpg" },
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Explore",
items: [
{
label: "Blog",
href: "/blog",
},
{
label: "Resume",
href: "/resume",
},
{
label: "Sandbox",
href: "/sandbox",
},
],
},
]}
columns={[{ title: "Explore", items: [{ label: "Blog", href: "/blog" }, { label: "Resume", href: "/resume" }, { label: "Sandbox", href: "/sandbox" }] }]}
bottomLeftText="© 2024 Portfolio"
bottomRightText="Built with passion."
/>
@@ -156,4 +85,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}