1 Commits

Author SHA1 Message Date
aab22a7ac0 Update src/app/page.tsx 2026-03-30 12:52:05 +00:00

View File

@@ -1,65 +1,35 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import HeroPersonalLinks from "@/components/sections/hero/HeroPersonalLinks";
import { Code, Users, Globe, MessageCircle, Sparkles } from "lucide-react";
import HeroCentered from "@/components/sections/hero/HeroCentered";
import { Sparkles, Linkedin, Twitter, Instagram } from "lucide-react";
export default function PersonalGridTemplatePage() {
const titleSegments = [
{ type: "text" as const, content: "I help founders" },
{ type: "image" as const, src: "/templates/personal-grid/grid1.webp", alt: "Damien Ghader" },
{ type: "text" as const, content: "build products" },
{ type: "image" as const, src: "/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: "#" },
},
];
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="none"
cardStyle="gradient-bordered"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="medium"
>
<HeroPersonalLinks
background={{ variant: "downward-rays-animated-grid" }}
title="I help people design software with AI"
titleSegments={titleSegments}
socialLinks={socialLinks}
linkCards={linkCards}
/>
</ThemeProvider>
);
}
export default function PersonalLinkInBioPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="reveal-blur"
borderRadius="pill"
contentWidth="small"
sizing="medium"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="bold"
>
<HeroCentered
title="Hi, I'm Alex"
description="Building the future of AI-driven creative tools. Check out my latest projects and socials below."
background={{ variant: "sparkles-gradient" }}
avatars={[{ src: "https://images.unsplash.com/photo-1535713875002-d1d0cf377fde?w=200&h=200&fit=crop", alt: "Alex" }]}
buttons={[
{ text: "Check my portfolio", href: "#" },
{ text: "Let's talk", href: "#" }
]}
buttonAnimation="slide-up"
className="py-20"
/>
</ThemeProvider>
);
}