Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ab46074835 | |||
| f9a69f2437 | |||
| 888bae12d1 | |||
| 0bdfec24c7 |
115
src/app/page.tsx
115
src/app/page.tsx
@@ -1,65 +1,72 @@
|
|||||||
"use client";
|
"use client";
|
||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import HeroPersonalLinks from "@/components/sections/hero/HeroPersonalLinks";
|
import HeroSignup from "@/components/sections/hero/HeroSignup";
|
||||||
import { Code, Users, Globe, MessageCircle, Sparkles } from "lucide-react";
|
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||||
|
import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
|
||||||
export default function PersonalGridTemplatePage() {
|
import { Github, Linkedin, Mail, Sparkles, Code, Globe } from "lucide-react";
|
||||||
const titleSegments = [
|
|
||||||
{ type: "text" as const, content: "I help founders" },
|
|
||||||
{ type: "image" as const, src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/personal-grid/grid1.webp", alt: "Damien Ghader" },
|
|
||||||
{ type: "text" as const, content: "build products" },
|
|
||||||
{ type: "image" as const, src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/personal-grid/grid2.webp", alt: "" },
|
|
||||||
{ type: "text" as const, content: "with AI" },
|
|
||||||
];
|
|
||||||
|
|
||||||
const socialLinks = [
|
|
||||||
{ icon: Globe, label: "damienghader", href: "https://twitter.com" },
|
|
||||||
{ icon: MessageCircle, label: "damienghader", href: "https://instagram.com" },
|
|
||||||
{ icon: Sparkles, label: "damienghader", href: "https://linkedin.com" },
|
|
||||||
];
|
|
||||||
|
|
||||||
const linkCards = [
|
|
||||||
{
|
|
||||||
icon: Code,
|
|
||||||
title: "Work with my agency",
|
|
||||||
description: "Work with my agency to build your MVP",
|
|
||||||
button: { text: "Get started", href: "#" },
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: Sparkles,
|
|
||||||
title: "20% off your Webild plan",
|
|
||||||
description: "Use my promo code to get Webild credits",
|
|
||||||
button: { text: "Get credits", href: "#" },
|
|
||||||
},
|
|
||||||
{
|
|
||||||
icon: Users,
|
|
||||||
title: "Join my community",
|
|
||||||
description: "Join the AI Founders Club",
|
|
||||||
button: { text: "Sign up", href: "#" },
|
|
||||||
},
|
|
||||||
];
|
|
||||||
|
|
||||||
|
export default function AchMadzPortfolio() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="text-stagger"
|
defaultButtonVariant="hover-magnetic"
|
||||||
defaultTextAnimation="entrance-slide"
|
defaultTextAnimation="reveal-blur"
|
||||||
borderRadius="rounded"
|
borderRadius="pill"
|
||||||
contentWidth="medium"
|
contentWidth="medium"
|
||||||
sizing="medium"
|
sizing="medium"
|
||||||
background="none"
|
background="fluid"
|
||||||
cardStyle="gradient-bordered"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="flat"
|
primaryButtonStyle="gradient"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="medium"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<HeroPersonalLinks
|
<div id="hero">
|
||||||
background={{ variant: "downward-rays-animated-grid" }}
|
<HeroSignup
|
||||||
title="I help people design software with AI"
|
tag="Software Engineer & Creator"
|
||||||
titleSegments={titleSegments}
|
tagIcon={Sparkles}
|
||||||
socialLinks={socialLinks}
|
title="Ach Madz: Building Digital Excellence"
|
||||||
linkCards={linkCards}
|
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."
|
||||||
/>
|
background={{ variant: "glowing-orb" }}
|
||||||
|
buttonText="Get in Touch"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<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>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user