"use client"; import { Container } from "@/components/container"; import { Heading } from "@/components/heading"; import { Subheading } from "@/components/subheading"; import { Card } from "@/components/ui/card"; import { Youtube, Instagram, ShoppingBag, Mail, ArrowUpRight } from "lucide-react"; import Image from "next/image"; const links = [ { title: "Watch my latest YouTube video", url: "https://youtube.com", icon: , color: "bg-[#FF0000]", }, { title: "Follow me on Instagram", url: "https://instagram.com", icon: , color: "bg-[#E1306C]", }, { title: "Shop my digital products", url: "https://shop.com", icon: , color: "bg-[#00B2FF]", }, { title: "Join the Newsletter", url: "https://newsletter.com", icon: , color: "bg-[#FFD700]", }, ]; export default function Home() { return (
background
Profile
Alex Creates Digital Creator & Artist

Building cool things on the internet. Sharing my journey through art, code, and content.

{links.map((link, index) => (
{link.icon}
{link.title}
))}
); }