Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ab46074835 | |||
| f9a69f2437 | |||
| 888bae12d1 |
@@ -1,49 +1,69 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import HeroOverlayTestimonial from "@/components/sections/hero/HeroOverlayTestimonial";
|
import HeroSignup from "@/components/sections/hero/HeroSignup";
|
||||||
import { Code, Globe, Sparkles } from "lucide-react";
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||||
|
import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
|
||||||
export default function PersonalPortfolioPage() {
|
import { Github, Linkedin, Mail, Sparkles, Code, Globe } from "lucide-react";
|
||||||
const testimonials = [
|
|
||||||
{
|
|
||||||
name: "Alex River", handle: "@ariver", testimonial: "The designs were absolutely world-class and perfectly aligned with my brand vision.", rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CqQjwbrkg4MwzJUItUsihWdcBc/uploaded-1777110995052-7l3iwi2m.png"},
|
|
||||||
{
|
|
||||||
name: "Sam Chen", handle: "@schen", testimonial: "Incredible attention to detail. Really pushed my project to the next level.", rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CqQjwbrkg4MwzJUItUsihWdcBc/uploaded-1777110995052-xx4f032f.png"},
|
|
||||||
];
|
|
||||||
|
|
||||||
const avatars = [
|
|
||||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CqQjwbrkg4MwzJUItUsihWdcBc/uploaded-1777110995052-7l3iwi2m.png", alt: "User" },
|
|
||||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CqQjwbrkg4MwzJUItUsihWdcBc/uploaded-1777110995052-xx4f032f.png", alt: "User" },
|
|
||||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CqQjwbrkg4MwzJUItUsihWdcBc/uploaded-1777110995052-vub6tpkj.png", alt: "User" },
|
|
||||||
];
|
|
||||||
|
|
||||||
|
export default function AchMadzPortfolio() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="hover-magnetic"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="reveal-blur"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="soft"
|
borderRadius="pill"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="medium"
|
sizing="medium"
|
||||||
background="noise"
|
background="fluid"
|
||||||
cardStyle="glass-depth"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="gradient"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="semibold"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<div id="hero">
|
<div id="hero">
|
||||||
<HeroOverlayTestimonial
|
<HeroSignup
|
||||||
title="Building digital experiences with passion"
|
tag="Software Engineer & Creator"
|
||||||
description="I specialize in creating clean, user-centric software that makes an impact. Let's build something great together."
|
tagIcon={Sparkles}
|
||||||
testimonials={testimonials}
|
title="Ach Madz: Building Digital Excellence"
|
||||||
avatars={avatars}
|
description="I am a passionate software engineer focused on crafting clean, modern, and performant web experiences. I love turning complex ideas into elegant, user-friendly solutions."
|
||||||
avatarText="Trusted by industry leaders"
|
background={{ variant: "glowing-orb" }}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CqQjwbrkg4MwzJUItUsihWdcBc/uploaded-1777110995052-vub6tpkj.png"
|
buttonText="Get in Touch"
|
||||||
buttons={[
|
/>
|
||||||
{ text: "View Portfolio", href: "#projects" },
|
</div>
|
||||||
{ text: "Contact Me", href: "#contact" }
|
|
||||||
|
<div id="about">
|
||||||
|
<SplitAbout
|
||||||
|
title="More about my journey"
|
||||||
|
description="With years of experience in full-stack development, I focus on building scalable web applications. My approach combines aesthetic design with robust engineering to deliver lasting impact."
|
||||||
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3CqQjwbrkg4MwzJUItUsihWdcBc/uploaded-1777111132044-0c8dl9zt.png"
|
||||||
|
imageAlt="Ach Madz"
|
||||||
|
imagePosition="left"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
bulletPoints={[
|
||||||
|
{ title: "Frontend Architecture", description: "Building reactive and fluid interfaces using modern frameworks.", icon: Code },
|
||||||
|
{ title: "Performance Optimization", description: "Ensuring fast load times and seamless user journeys.", icon: Globe },
|
||||||
|
{ title: "Innovation & Strategy", description: "Designing thoughtful solutions to solve real-world problems.", icon: Sparkles }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="team">
|
||||||
|
<TeamCardTwo
|
||||||
|
title="My Professional Focus"
|
||||||
|
description="Always exploring new frontiers in technology and design."
|
||||||
|
gridVariant="uniform-all-items-equal"
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
members={[
|
||||||
|
{
|
||||||
|
id: "1", name: "Ach Madz", role: "Full Stack Engineer", description: "Passionate about creating modern digital ecosystems.", socialLinks: [
|
||||||
|
{ icon: Github, url: "#" },
|
||||||
|
{ icon: Linkedin, url: "#" },
|
||||||
|
{ icon: Mail, url: "#" }
|
||||||
|
]
|
||||||
|
}
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user