import React, { FC } from 'react'; import { motion } from 'framer-motion'; interface NavLinkProps { href: string; children: React.ReactNode; } /** * Navigation link component. */ export const NavLink: FC = ({ href, children }) => { return ( {children} ); };