"use client"; import { PROFILE } from "@/data/content"; import ContactMethods from "./ContactMethods"; import { useStaggerReveal } from "@/hooks/useAnimations"; import Links from "./Links"; import ProfileMore from "./ProfileMore"; export default function Profile() { const visible = useStaggerReveal(PROFILE.links.length + PROFILE.contactMethods.length, 100); return (
{"# about"}

{PROFILE.name}

{PROFILE.title}

{PROFILE.bio}

); }