1 Commits

Author SHA1 Message Date
3209a3e187 Update src/app/page.tsx 2026-04-03 06:02:20 +00:00

View File

@@ -14,29 +14,23 @@ export default function PersonalGridTemplatePage() {
]; ];
const socialLinks = [ const socialLinks = [
{ icon: Globe, label: "damienghader", href: "https://twitter.com" }, { icon: Globe, label: "Follow on Twitter", href: "https://twitter.com" },
{ icon: MessageCircle, label: "damienghader", href: "https://instagram.com" }, { icon: MessageCircle, label: "Follow on Instagram", href: "https://instagram.com" },
{ icon: Sparkles, label: "damienghader", href: "https://linkedin.com" }, { icon: Sparkles, label: "Connect on LinkedIn", href: "https://linkedin.com" },
]; ];
const linkCards = [ const linkCards = [
{ {
icon: Code, icon: Code,
title: "Work with my agency", title: "Work with my agency", description: "Work with my agency to build your MVP", button: { text: "Get started", href: "#" },
description: "Work with my agency to build your MVP",
button: { text: "Get started", href: "#" },
}, },
{ {
icon: Sparkles, icon: Sparkles,
title: "20% off your Webild plan", title: "20% off your Webild plan", description: "Use my promo code to get Webild credits", button: { text: "Get credits", href: "#" },
description: "Use my promo code to get Webild credits",
button: { text: "Get credits", href: "#" },
}, },
{ {
icon: Users, icon: Users,
title: "Join my community", title: "Join my community", description: "Join the AI Founders Club", button: { text: "Sign up", href: "#" },
description: "Join the AI Founders Club",
button: { text: "Sign up", href: "#" },
}, },
]; ];
@@ -62,4 +56,4 @@ export default function PersonalGridTemplatePage() {
/> />
</ThemeProvider> </ThemeProvider>
); );
} }