1 Commits

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

View File

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