Merge version_1 into main #2

Merged
bender merged 4 commits from version_1 into main 2026-04-30 14:40:49 +00:00
4 changed files with 70 additions and 371 deletions

View File

@@ -8,7 +8,7 @@ import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNinete
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function BlogPage() {
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>
@@ -55,36 +44,9 @@ export default function LandingPage() {
title="Recent Insights"
description="Sharing articles on marketing, AI, and professional growth."
blogs={[
{
id: "1",
category: "AI",
title: "The Future of AI",
excerpt: "Deep dive into machine learning.",
imageSrc: "http://img.b2bpic.net/free-photo/ai-cloud-concept-with-robot-arms_23-2149739749.jpg",
authorName: "Admin",
authorAvatar: "http://img.b2bpic.net/free-photo/ai-cloud-with-robot-face_23-2149739758.jpg",
date: "Oct 2024",
},
{
id: "2",
category: "Mental Health",
title: "Tech & Balance",
excerpt: "Finding peace in tech.",
imageSrc: "http://img.b2bpic.net/free-photo/3d-render-modern-background-with-flowing-particles-design_1048-14842.jpg",
authorName: "Admin",
authorAvatar: "http://img.b2bpic.net/free-photo/ai-robotic-operations-tablet_1387-647.jpg",
date: "Oct 2024",
},
{
id: "3",
category: "Management",
title: "Agile Leadership",
excerpt: "New management styles.",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-wooden-pawns-arrangement_23-2149382447.jpg",
authorName: "Admin",
authorAvatar: "http://img.b2bpic.net/free-photo/robot-character-cracked-surface_1048-12073.jpg",
date: "Oct 2024",
},
{ id: "1", category: "AI", title: "The Future of AI", excerpt: "Deep dive into machine learning.", imageSrc: "http://img.b2bpic.net/free-photo/ai-cloud-concept-with-robot-arms_23-2149739749.jpg", authorName: "Admin", authorAvatar: "http://img.b2bpic.net/free-photo/ai-cloud-with-robot-face_23-2149739758.jpg", date: "Oct 2024" },
{ id: "2", category: "Mental Health", title: "Tech & Balance", excerpt: "Finding peace in tech.", imageSrc: "http://img.b2bpic.net/free-photo/3d-render-modern-background-with-flowing-particles-design_1048-14842.jpg", authorName: "Admin", authorAvatar: "http://img.b2bpic.net/free-photo/ai-robotic-operations-tablet_1387-647.jpg", date: "Oct 2024" },
{ id: "3", category: "Management", title: "Agile Leadership", excerpt: "New management styles.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-wooden-pawns-arrangement_23-2149382447.jpg", authorName: "Admin", authorAvatar: "http://img.b2bpic.net/free-photo/robot-character-cracked-surface_1048-12073.jpg", date: "Oct 2024" },
]}
/>
</div>
@@ -96,20 +58,8 @@ export default function LandingPage() {
title="Popular Categories"
description="Browse our most engaged topics."
features={[
{
tag: "Tech",
title: "Machine Learning",
subtitle: "Deep Dive",
description: "Understanding neural nets.",
imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797661.jpg?_wi=2",
},
{
tag: "Design",
title: "UI UX Trends",
subtitle: "Modern Design",
description: "Current interface standards.",
imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797628.jpg?_wi=1",
},
{ tag: "Tech", title: "Machine Learning", subtitle: "Deep Dive", description: "Understanding neural nets.", imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797661.jpg" },
{ tag: "Design", title: "UI UX Trends", subtitle: "Modern Design", description: "Current interface standards.", imageSrc: "http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797628.jpg" },
]}
/>
</div>
@@ -117,9 +67,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Newsletter"
title="Join the list"
description="Subscribe for weekly AI insights."
@@ -128,25 +76,7 @@ export default function LandingPage() {
<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."
/>
@@ -154,4 +84,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -28,43 +28,24 @@ 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: "Contact", href: "#contact" }}
/>
</div>
<div id="hero" data-section="hero">
<HeroLogoBillboard
background={{
variant: "gradient-bars",
}}
background={{ variant: "gradient-bars" }}
logoText="Personal Portfolio"
description="Showcasing AI art, insights on marketing, and experimental code. Welcome to my digital workspace."
buttons={[
{
text: "Explore Blog",
href: "/blog",
},
{
text: "Resume",
href: "/resume",
},
{ text: "Explore Blog", href: "/blog" },
{ text: "Resume", href: "/resume" },
]}
imageSrc="http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797755.jpg"
mediaAnimation="slide-up"
@@ -76,7 +57,7 @@ export default function LandingPage() {
useInvertedBackground={false}
title="About Me"
description="I explore the intersection of AI, mental health, and management, while building tools in my sandbox. This site is where I curate my journey."
imageSrc="http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797661.jpg?_wi=1"
imageSrc="http://img.b2bpic.net/free-photo/modern-office-space-with-futuristic-decor-furniture_23-2151797661.jpg"
/>
</div>
@@ -88,41 +69,11 @@ export default function LandingPage() {
title="Community Feedback"
description="Voices from peers and partners."
testimonials={[
{
id: "t1",
name: "Alex J.",
handle: "@alexj",
testimonial: "Brilliant insights on AI.",
imageSrc: "http://img.b2bpic.net/free-photo/electricity-flowing-smooth-blue-abstract-wave-generated-by-ai_188544-15334.jpg?_wi=1",
},
{
id: "t2",
name: "Sarah M.",
handle: "@sm_tech",
testimonial: "Exceptional leadership skills.",
imageSrc: "http://img.b2bpic.net/free-photo/3d-render-abstract-modern-background-with-flowing-lines-cyber-dots_1048-12672.jpg",
},
{
id: "t3",
name: "Daniel K.",
handle: "@danik",
testimonial: "Sandbox tools saved me time.",
imageSrc: "http://img.b2bpic.net/free-photo/networking-concept-still-life-composition_23-2149035678.jpg",
},
{
id: "t4",
name: "Emma R.",
handle: "@er_design",
testimonial: "Very clear writing style.",
imageSrc: "http://img.b2bpic.net/free-photo/networking-concept-still-life-assortment_23-2149035668.jpg",
},
{
id: "t5",
name: "Jordan P.",
handle: "@jp_dev",
testimonial: "A go-to source for tech.",
imageSrc: "http://img.b2bpic.net/free-photo/network-concept-with-notebook-flat-lay_23-2148999179.jpg",
},
{ id: "t1", name: "Alex J.", handle: "@alexj", testimonial: "Brilliant insights on AI.", imageSrc: "http://img.b2bpic.net/free-photo/electricity-flowing-smooth-blue-abstract-wave-generated-by-ai_188544-15334.jpg" },
{ id: "t2", name: "Sarah M.", handle: "@sm_tech", testimonial: "Exceptional leadership skills.", imageSrc: "http://img.b2bpic.net/free-photo/3d-render-abstract-modern-background-with-flowing-lines-cyber-dots_1048-12672.jpg" },
{ id: "t3", name: "Daniel K.", handle: "@danik", testimonial: "Sandbox tools saved me time.", imageSrc: "http://img.b2bpic.net/free-photo/networking-concept-still-life-composition_23-2149035678.jpg" },
{ id: "t4", name: "Emma R.", handle: "@er_design", testimonial: "Very clear writing style.", imageSrc: "http://img.b2bpic.net/free-photo/networking-concept-still-life-assortment_23-2149035668.jpg" },
{ id: "t5", name: "Jordan P.", handle: "@jp_dev", testimonial: "A go-to source for tech.", imageSrc: "http://img.b2bpic.net/free-photo/network-concept-with-notebook-flat-lay_23-2148999179.jpg" },
]}
/>
</div>
@@ -135,31 +86,11 @@ export default function LandingPage() {
description="Everything you need to know."
faqsAnimation="slide-up"
faqs={[
{
id: "f1",
title: "What tools do you use?",
content: "Mostly Python, React, and AI models.",
},
{
id: "f2",
title: "Do you offer consulting?",
content: "Yes, reach out via the contact page.",
},
{
id: "f3",
title: "How often do you post?",
content: "Weekly updates.",
},
{
id: "f4",
title: "Is the sandbox open source?",
content: "Check the repo links.",
},
{
id: "f5",
title: "Where are you based?",
content: "Digital nomad, mostly remote.",
},
{ id: "f1", title: "What tools do you use?", content: "Mostly Python, React, and AI models." },
{ id: "f2", title: "Do you offer consulting?", content: "Yes, reach out via the contact page." },
{ id: "f3", title: "How often do you post?", content: "Weekly updates." },
{ id: "f4", title: "Is the sandbox open source?", content: "Check the repo links." },
{ id: "f5", title: "Where are you based?", content: "Digital nomad, mostly remote." },
]}
/>
</div>
@@ -167,9 +98,7 @@ export default function LandingPage() {
<div id="contact" data-section="contact">
<ContactCenter
useInvertedBackground={false}
background={{
variant: "plain",
}}
background={{ variant: "plain" }}
tag="Let's connect"
title="Get in touch"
description="Have an exciting project? Let's talk about it."
@@ -179,23 +108,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Explore",
items: [
{
label: "Blog",
href: "/blog",
},
{
label: "Resume",
href: "/resume",
},
{
label: "Sandbox",
href: "/sandbox",
},
],
},
{ title: "Explore", items: [{ label: "Blog", href: "/blog" }, { label: "Resume", href: "/resume" }, { label: "Sandbox", href: "/sandbox" }] },
]}
bottomLeftText="© 2024 Portfolio"
bottomRightText="Built with passion."
@@ -204,4 +117,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

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>
);
}
}

View File

@@ -8,7 +8,7 @@ import FeatureCardNineteen from '@/components/sections/feature/FeatureCardNinete
import FooterSimple from '@/components/sections/footer/FooterSimple';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
export default function LandingPage() {
export default function SandboxPage() {
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,21 +41,9 @@ export default function LandingPage() {
textboxLayout="default"
useInvertedBackground={true}
features={[
{
title: "Python Scripting",
description: "Automating boring tasks.",
imageSrc: "http://img.b2bpic.net/free-photo/creative-woman-working-computer_53876-96942.jpg?_wi=2",
},
{
title: "React Experiments",
description: "Building interactive UI widgets.",
imageSrc: "http://img.b2bpic.net/free-photo/3d-render-digital-technology-background-network-communications-sound-waves_1048-13254.jpg?_wi=2",
},
{
title: "API Prototypes",
description: "Testing data connections.",
imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-particle-background_1048-11982.jpg?_wi=1",
},
{ title: "Python Scripting", description: "Automating boring tasks.", imageSrc: "http://img.b2bpic.net/free-photo/creative-woman-working-computer_53876-96942.jpg" },
{ title: "React Experiments", description: "Building interactive UI widgets.", imageSrc: "http://img.b2bpic.net/free-photo/3d-render-digital-technology-background-network-communications-sound-waves_1048-13254.jpg" },
{ title: "API Prototypes", description: "Testing data connections.", imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-particle-background_1048-11982.jpg" },
]}
title="The Sandbox"
description="Testing code and experimenting with new scripts here."
@@ -80,20 +57,8 @@ export default function LandingPage() {
title="Project Highlights"
description="Top selected experiments."
features={[
{
tag: "AI",
title: "Neural Art",
subtitle: "Generative",
description: "Models creating art.",
imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-particle-background_1048-11982.jpg?_wi=2",
},
{
tag: "Dev",
title: "React Widgets",
subtitle: "UI Tools",
description: "Reusable UI modules.",
imageSrc: "http://img.b2bpic.net/free-photo/electricity-flowing-smooth-blue-abstract-wave-generated-by-ai_188544-15334.jpg?_wi=2",
},
{ tag: "AI", title: "Neural Art", subtitle: "Generative", description: "Models creating art.", imageSrc: "http://img.b2bpic.net/free-photo/3d-abstract-particle-background_1048-11982.jpg" },
{ tag: "Dev", title: "React Widgets", subtitle: "UI Tools", description: "Reusable UI modules.", imageSrc: "http://img.b2bpic.net/free-photo/electricity-flowing-smooth-blue-abstract-wave-generated-by-ai_188544-15334.jpg" },
]}
/>
</div>
@@ -106,56 +71,18 @@ export default function LandingPage() {
description="How to contribute to these projects."
faqsAnimation="slide-up"
faqs={[
{
id: "s1",
title: "License?",
content: "MIT License.",
},
{
id: "s2",
title: "How to clone?",
content: "See GitHub.",
},
{
id: "s3",
title: "Tech Stack?",
content: "React, Tailwind, Node.",
},
{
id: "s4",
title: "Testing?",
content: "Jest and Cypress.",
},
{
id: "s5",
title: "Deploying?",
content: "Vercel.",
},
{ id: "s1", title: "License?", content: "MIT License." },
{ id: "s2", title: "How to clone?", content: "See GitHub." },
{ id: "s3", title: "Tech Stack?", content: "React, Tailwind, Node." },
{ id: "s4", title: "Testing?", content: "Jest and Cypress." },
{ id: "s5", title: "Deploying?", content: "Vercel." },
]}
/>
</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."
/>
@@ -163,4 +90,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}