first commit
This commit is contained in:
28
pages/contact.tsx
Normal file
28
pages/contact.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
import ContactCode from '@/components/ContactCode';
|
||||
|
||||
import styles from '@/styles/ContactPage.module.css';
|
||||
|
||||
const ContactPage = () => {
|
||||
return (
|
||||
<div className={styles.layout}>
|
||||
<h1 className={styles.pageTitle}>Contact Me</h1>
|
||||
<p className={styles.pageSubtitle}>
|
||||
Feel free to reach out to me through any of the social platforms below.
|
||||
I'm always open to new opportunities and connections.
|
||||
</p>
|
||||
<div className={styles.container}>
|
||||
<div className={styles.contactContainer}>
|
||||
<ContactCode />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export async function getStaticProps() {
|
||||
return {
|
||||
props: { title: 'Contact' },
|
||||
};
|
||||
}
|
||||
|
||||
export default ContactPage;
|
||||
Reference in New Issue
Block a user