diff --git a/app/page.tsx b/app/page.tsx new file mode 100644 index 0000000..524ff65 --- /dev/null +++ b/app/page.tsx @@ -0,0 +1,101 @@ +"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 ( + + + + + + + + + + + + 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} + + + + + + ))} + + + + + + ); +}
+ Building cool things on the internet. Sharing my journey through art, code, and content. +