"use client" import { motion } from "motion/react" import Gravity, { MatterBody } from "@/fancy/components/physics/gravity" const socialLinks = [ { name: "LinkedIn", x: "30%", y: "10%" }, { name: "X (Twitter)", x: "30%", y: "30%" }, { name: "Instagram", x: "40%", y: "20%", angle: 10 }, { name: "GitHub", x: "75%", y: "10%", angle: -4 }, { name: "BlueSky", x: "80%", y: "20%", angle: 5 }, ] const stars = ["✱", "✽", "✦", "✸", "✹", "✺"] export default function Preview() { return (

CONTACT

{socialLinks.map((link) => ( {link.name} ))} {stars.map((star, i) => (
))}
) }