You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
import Head from 'next/head'
|
|
|
|
import styles from '../styles/Contact.module.css'
|
|
|
|
import Header from '../components/header';
|
|
|
|
import Footer from '../components/footer';
|
|
|
|
import Socials from '../components/socials';
|
|
|
|
|
|
|
|
export default function Contact() {
|
|
|
|
return (
|
|
|
|
<div className="page">
|
|
|
|
<Head>
|
|
|
|
<title>Trick - Contact</title>
|
|
|
|
</Head>
|
|
|
|
|
|
|
|
<Header />
|
|
|
|
|
|
|
|
<div className="container">
|
|
|
|
<article className="content">
|
|
|
|
|
|
|
|
<section className="card">
|
|
|
|
<h1>Contact</h1>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<Socials />
|
|
|
|
|
|
|
|
</article>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<Footer />
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|