Merge version_5 into main #6

Merged
development merged 1 commits from version_5 into main 2025-12-28 03:03:06 +00:00

View File

@@ -1,13 +1,6 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
import HeroBillboardMetrics from '@/components/sections/hero/HeroBillboardMetrics';
import ProductCardSix from '@/components/sections/product/ProductCardSix';
import TextAbout from '@/components/sections/about/TextAbout';
import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function LandingPage() {
return (
@@ -23,157 +16,10 @@ export default function LandingPage() {
secondaryButtonStyle="layered"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleMinimal
brandName="Ben"
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardMetrics
title="3D Artist & Blender Specialist"
description="Crafting immersive digital experiences through advanced 3D modeling, rendering, and animation. Transforming concepts into stunning visual reality."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888719283-nfmcx166.jpg"
metrics={[
{
value: "8+",
label: "Years in 3D"
},
{
value: "150+",
label: "Projects Completed"
},
{
value: "50+",
label: "Happy Clients"
}
]}
buttons={[
{
text: "View Portfolio",
href: "#gallery"
},
{
text: "Learn More",
href: "#about"
}
]}
/>
</div>
<div id="gallery" data-section="gallery">
<ProductCardSix
title="Featured Work"
description="Explore my latest 3D renders and creative projects. Each piece showcases technical expertise and artistic vision."
products={[
{
name: "Character Modeling",
price: "Portfolio",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888720392-ehsyl2xj.jpg",
description: "Advanced character sculpting and topology optimization using Blender. Includes rigging setup, UV unwrapping, and texture preparation for animation pipelines."
},
{
name: "Visual Effects",
price: "Portfolio",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888721289-rze89n00.jpg",
description: "Particle systems, simulations, and motion graphics. Built with Blender's Geometry Nodes and shader effects to create dynamic visual experiences."
},
{
name: "Product Rendering",
price: "Portfolio",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888722652-paaoqfev.jpg",
description: "High-fidelity product visualization with photorealistic lighting and materials. Optimized for e-commerce and marketing presentations."
}
]}
/>
</div>
<div id="about" data-section="about">
<TextAbout
description="I bring imagination to life through cutting-edge 3D technology and creative storytelling"
/>
</div>
<div id="skills" data-section="skills">
<FeatureCardEight
title="Core Competencies"
description="Specialized expertise in 3D creation and digital art production"
features={[
{
title: "3D Modeling",
description: "Advanced character and environment modeling using Blender and industry-standard techniques",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888720392-ehsyl2xj.jpg"
},
{
title: "Rendering & Shading",
description: "Photorealistic rendering with Cycles and specialized material development",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888721289-rze89n00.jpg"
},
{
title: "Animation",
description: "Smooth character rigging, motion capture, and keyframe animation",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888722652-paaoqfev.jpg"
}
]}
/>
</div>
<div id="contact" data-section="contact">
<ContactSplit
title="Ready to bring your vision to life?"
description="Interested in collaborating on your next 3D project? Reach out directly or subscribe for updates on my latest work."
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888725581-tp75ftz7.jpg"
inputPlaceholder="your@email.com"
buttonText="Subscribe"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
brandName="Ben"
columns={[
{
title: "Work",
items: [
{
label: "Portfolio",
href: "#gallery"
},
{
label: "Services",
href: "#skills"
}
]
},
{
title: "About",
items: [
{
label: "Bio",
href: "#about"
},
{
label: "Contact",
href: "#contact"
}
]
},
{
title: "Connect",
items: [
{
label: "Email",
href: "mailto:ben@example.com"
},
{
label: "ArtStation",
href: "#"
}
]
}
]}
copyrightText="© 2025 Ben - 3D Artist & Blender Specialist"
/>
<div>
<h1>Welcome to Ben's Portfolio</h1>
<p>3D Artist & Blender Specialist</p>
<p>Professional 3D artist specializing in Blender modeling, rendering, and animation. Transforming concepts into stunning visual reality.</p>
</div>
</ThemeProvider>
);