import ContactCode from '@/components/ContactCode'; import styles from '@/styles/ContactPage.module.css'; const ContactPage = () => { return (

Contact Me

Feel free to reach out to me through any of the social platforms below. I'm always open to new opportunities and connections.

); }; export async function getStaticProps() { return { props: { title: 'Contact' }, }; } export default ContactPage;