-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.js
34 lines (32 loc) · 1.43 KB
/
contact.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import Head from 'next/head'
/* Component imports */
import GlobalHead from "../components/head/globalhead";
import Header from "../components/header/header";
import Footer from "../components/footer/footer";
export default function Contact() {
return (
<>
<Head>
<GlobalHead/>
<title>Contact – Wyona</title>
<meta name="description" content="Contact" />
</Head>
<Header color={"white"}/>
<main className="padding--top--header margin--bottom--layout-06">
<section className="margin--top--layout-06 flex-direction--column flex--align-items--center">
<div className="bx--grid flex-direction--column">
{/*<p className="margin--top--spacing-04">Contact</p>*/}
<p className="margin--top--spacing-06 text-length--02">
Contact
</p>
<a href="mailto:[email protected]" className="color--grey-90 a--internal">
<h1 className="margin--top--spacing-06 color--grey-90">[email protected]</h1>
</a>
<h1 className="margin--top--spacing-06 color--grey-90">Fritz-Fleiner-Weg 9<br/>8044 Zürich<br/>Switzerland</h1>
</div>
</section>
</main>
<Footer/>
</>
)
}