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";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import HeroPersonalLinks from "@/components/sections/hero/HeroPersonalLinks";
|
||||
import { Code, Users, Globe, MessageCircle, Sparkles } from "lucide-react";
|
||||
|
||||
export default function PersonalGridTemplatePage() {
|
||||
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: "#" },
|
||||
},
|
||||
];
|
||||
import HeroSignup from "@/components/sections/hero/HeroSignup";
|
||||
import SplitAbout from "@/components/sections/about/SplitAbout";
|
||||
import TeamCardTwo from "@/components/sections/team/TeamCardTwo";
|
||||
import { Github, Linkedin, Mail, Sparkles, Code, Globe } from "lucide-react";
|
||||
|
||||
export default function AchMadzPortfolio() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="rounded"
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="gradient-bordered"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="medium"
|
||||
background="fluid"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<HeroPersonalLinks
|
||||
background={{ variant: "downward-rays-animated-grid" }}
|
||||
title="I help people design software with AI"
|
||||
titleSegments={titleSegments}
|
||||
socialLinks={socialLinks}
|
||||
linkCards={linkCards}
|
||||
/>
|
||||
<div id="hero">
|
||||
<HeroSignup
|
||||
tag="Software Engineer & Creator"
|
||||
tagIcon={Sparkles}
|
||||
title="Ach Madz: Building Digital Excellence"
|
||||
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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user