'use client'; import { ExternalLinkIcon } from 'lucide-react'; import { motion } from 'motion/react'; export const ExternalLink = ({ href, text, }: { href: string; text: string; }) => { return ( {text} ); };