3 Commits

Author SHA1 Message Date
6b571e5497 Update src/app/page.tsx 2025-12-28 14:23:19 +00:00
c604dbbe29 Update src/app/layout.tsx 2025-12-28 14:23:18 +00:00
fcf41ae025 Update src/app/globals.css 2025-12-28 14:23:17 +00:00
3 changed files with 119 additions and 107 deletions

View File

@@ -4,13 +4,13 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
--background: #ffffff; --background: #0a0a0a;
--card: #fafafa; --card: #1a1a1a;
--foreground: #000000; --foreground: #fffffae6;
--primary-cta: #ffcc00; --primary-cta: #fde047;
--secondary-cta: #ffffff; --secondary-cta: #1a1a1a;
--accent: #e5e5e5; --accent: #737373;
--background-accent: #f5f5f5; --background-accent: #737373;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
@@ -495,7 +495,7 @@ html {
body { body {
background-color: var(--background); background-color: var(--background);
color: var(--foreground); color: var(--foreground);
font-family: var(--font-inter-tight), sans-serif; font-family: var(--font-ibm-plex-sans), sans-serif;
position: relative; position: relative;
min-height: 100vh; min-height: 100vh;
overscroll-behavior: none; overscroll-behavior: none;
@@ -508,5 +508,5 @@ h3,
h4, h4,
h5, h5,
h6 { h6 {
font-family: var(--font-inter-tight), sans-serif; font-family: var(--font-ibm-plex-sans), sans-serif;
} }

View File

@@ -1273,4 +1273,4 @@ export default function RootLayout({
</ServiceWrapper> </ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -1,149 +1,143 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import NavbarStyleMinimal from '@/components/navbar/NavbarStyleMinimal';
import HeroBillboard from "@/components/sections/hero/HeroBillboard"; import HeroBillboardMetrics from '@/components/sections/hero/HeroBillboardMetrics';
import ProductCardOne from "@/components/sections/product/ProductCardOne"; import ProductCardSix from '@/components/sections/product/ProductCardSix';
import MediaSplitTabsAbout from "@/components/sections/about/MediaSplitTabsAbout"; import TextAbout from '@/components/sections/about/TextAbout';
import MetricCardEleven from "@/components/sections/metrics/MetricCardEleven"; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import ContactSplit from "@/components/sections/contact/ContactSplit"; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterSocial from "@/components/sections/footer/FooterSocial"; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function LandingPage() { export default function LandingPage() {
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="text-stagger" defaultButtonVariant="shift-hover"
defaultTextAnimation="entrance-slide" defaultTextAnimation="reveal-blur"
borderRadius="rounded" borderRadius="soft"
contentWidth="medium" contentWidth="compact"
sizing="medium" sizing="mediumSizeLargeTitles"
background="circleGradient" background="noiseDiagonalGradient"
cardStyle="glass-elevated" cardStyle="solid"
primaryButtonStyle="gradient" primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="glass" secondaryButtonStyle="layered"
headingFontWeight="normal" headingFontWeight="semibold"
> >
<div id="nav" data-section="nav"> <div id="nav" data-section="nav">
<NavbarStyleCentered <NavbarStyleMinimal
navItems={[
{ name: "Gallery", id: "gallery" },
{ name: "About", id: "about" },
{ name: "Skills", id: "skills" },
{ name: "Contact", id: "contact" },
]}
button={{ text: "Get in Touch", href: "contact" }}
brandName="Ben" brandName="Ben"
button={{
text: "Get in Touch",
href: "#contact"
}}
/> />
</div> </div>
<div id="hero" data-section="hero"> <div id="hero" data-section="hero">
<HeroBillboard <HeroBillboardMetrics
title="3D Artist & Blender Specialist" title="3D Artist & Blender Specialist"
description="Crafting immersive digital experiences through advanced 3D modeling, rendering, and animation. Transforming concepts into stunning visual reality." description="Crafting immersive digital experiences through advanced 3D modeling, rendering, and animation. Transforming concepts into stunning visual reality."
tag="3D Creative" tag="3D Creative"
buttons={[
{ text: "View Portfolio", href: "gallery" },
{ text: "Get Started", href: "contact" },
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888719283-nfmcx166.jpg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888719283-nfmcx166.jpg"
imageAlt="3D Artist Portfolio" imageAlt="Hero 3D render"
frameStyle="card" frameStyle="card"
metricsLabel="Trusted by studios and brands worldwide"
metrics={[
{
id: "1",
value: "8+",
label: "Years in 3D"
},
{
id: "2",
value: "150+",
label: "Projects Completed"
},
{
id: "3",
value: "50+",
label: "Happy Clients"
}
]}
buttons={[
{
text: "View Portfolio",
href: "#gallery"
},
{
text: "Learn More",
href: "#about"
}
]}
/> />
</div> </div>
<div id="gallery" data-section="gallery"> <div id="gallery" data-section="gallery">
<ProductCardOne <ProductCardSix
title="Featured Work" title="Featured Work"
description="Explore my latest 3D renders and creative projects. Each piece showcases technical expertise and artistic vision." description="Explore my latest 3D renders and creative projects. Each piece showcases technical expertise and artistic vision."
products={[ products={[
{ {
id: "1", id: "1",
name: "Character Modeling", name: "Character Modeling",
price: "Advanced", price: "Portfolio",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888720392-ehsyl2xj.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888720392-ehsyl2xj.jpg",
imageAlt: "3D character model", imageAlt: "3D character model"
}, },
{ {
id: "2", id: "2",
name: "Visual Effects", name: "Visual Effects",
price: "Dynamic", price: "Portfolio",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888721289-rze89n00.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888721289-rze89n00.jpg",
imageAlt: "3D animation and effects", imageAlt: "3D animation and effects"
}, },
{ {
id: "3", id: "3",
name: "Product Rendering", name: "Product Rendering",
price: "Photorealistic", price: "Portfolio",
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888722652-paaoqfev.jpg", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888722652-paaoqfev.jpg",
imageAlt: "3D product render", imageAlt: "3D product render"
}, }
]} ]}
textboxLayout="default" gridVariant="uniform-all-items-equal"
animationType="slide-up" animationType="slide-up"
gridVariant="three-columns-all-equal-width" textboxLayout="default"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
/> />
</div> </div>
<div id="about" data-section="about"> <div id="about" data-section="about">
<MediaSplitTabsAbout <TextAbout
title="I bring imagination to life through cutting-edge 3D technology and creative storytelling" title="I bring imagination to life through cutting-edge 3D technology and creative storytelling"
tabs={[
{
id: "vision",
label: "Vision",
description: "Bringing concepts to life through innovative 3D visualization and artistic storytelling.",
},
{
id: "expertise",
label: "Expertise",
description: "Specialized in Blender, character modeling, photorealistic rendering, and animation pipelines.",
},
{
id: "approach",
label: "Approach",
description: "Combining technical excellence with creative vision to deliver stunning visual results.",
},
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888725581-tp75ftz7.jpg"
imageAlt="About section"
imagePosition="right"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
/> />
</div> </div>
<div id="skills" data-section="skills"> <div id="skills" data-section="skills">
<MetricCardEleven <FeatureCardEight
title="Core Competencies" title="Core Competencies"
description="Specialized expertise in 3D creation and digital art production" description="Specialized expertise in 3D creation and digital art production"
metrics={[ features={[
{ {
id: "1", id: 1,
value: "8+", title: "3D Modeling",
title: "Years in 3D", description: "Advanced character and environment modeling using Blender and industry-standard techniques",
description: "Professional experience in 3D creation", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888720392-ehsyl2xj.jpg"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888720392-ehsyl2xj.jpg",
imageAlt: "3D Modeling",
}, },
{ {
id: "2", id: 2,
value: "150+", title: "Rendering & Shading",
title: "Projects Completed", description: "Photorealistic rendering with Cycles and specialized material development",
description: "High-quality deliverables across industries", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888721289-rze89n00.jpg"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888721289-rze89n00.jpg",
imageAlt: "Rendering & Shading",
}, },
{ {
id: "3", id: 3,
value: "50+", title: "Animation",
title: "Happy Clients", description: "Smooth character rigging, motion capture, and keyframe animation",
description: "Satisfied clients worldwide", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888722652-paaoqfev.jpg"
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888722652-paaoqfev.jpg", }
imageAlt: "Animation",
},
]} ]}
textboxLayout="default" textboxLayout="default"
animationType="slide-up"
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
/> />
</div> </div>
@@ -153,45 +147,63 @@ export default function LandingPage() {
tag="Get Started" tag="Get Started"
title="Ready to bring your vision to life?" 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." description="Interested in collaborating on your next 3D project? Reach out directly or subscribe for updates on my latest work."
useInvertedBackground="noInvert"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888725581-tp75ftz7.jpg" imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766888725581-tp75ftz7.jpg"
imageAlt="Contact section" imageAlt="Contact section"
mediaPosition="right" mediaPosition="right"
inputPlaceholder="your@email.com" inputPlaceholder="your@email.com"
buttonText="Subscribe" buttonText="Subscribe"
termsText="We respect your privacy. Unsubscribe anytime." termsText="We respect your privacy. Unsubscribe anytime."
useInvertedBackground="noInvert"
/> />
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSocial <FooterBaseCard
logoText="Ben" logoText="Ben"
columns={[ columns={[
{ {
title: "Work", title: "Work",
items: [ items: [
{ label: "Portfolio", href: "gallery" }, {
{ label: "Services", href: "skills" }, label: "Portfolio",
], href: "#gallery"
},
{
label: "Services",
href: "#skills"
}
]
}, },
{ {
title: "About", title: "About",
items: [ items: [
{ label: "Bio", href: "about" }, {
{ label: "Contact", href: "contact" }, label: "Bio",
], href: "#about"
},
{
label: "Contact",
href: "#contact"
}
]
}, },
{ {
title: "Connect", title: "Connect",
items: [ items: [
{ label: "Email", href: "mailto:ben@example.com" }, {
{ label: "ArtStation", href: "https://artstation.com" }, label: "Email",
], href: "mailto:ben@example.com"
}, },
{
label: "ArtStation",
href: "#"
}
]
}
]} ]}
copyrightText="© 2025 Ben - 3D Artist & Blender Specialist" copyrightText="© 2025 Ben - 3D Artist & Blender Specialist"
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }