From aab22a7ac06b8616f5d847c05c38fcb655429971 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 30 Mar 2026 12:52:05 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 92 ++++++++++++++++-------------------------------- 1 file changed, 31 insertions(+), 61 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index 1b28f3d..c323dcf 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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 ( - - - - ); -} +export default function PersonalLinkInBioPage() { + return ( + + + + ); +} \ No newline at end of file