-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from UTDNebula/contact-page
Basic contact page
- Loading branch information
Showing
3 changed files
with
57 additions
and
2 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
import Header from '@/components/Header'; | ||
import Footer from '@/components/Footer'; | ||
import Head from 'next/head'; | ||
import Image from 'next/image'; | ||
import Link from 'next/link'; | ||
|
||
const linkClasses = 'text-2xl underline decoration-transparent hover:decoration-inherit transition'; | ||
|
||
const Contact = () => ( | ||
<> | ||
|
@@ -9,7 +13,55 @@ const Contact = () => ( | |
<link rel="canonical" href="https://www.utdnebula.com/about/contact" key="canonical" /> | ||
<meta property="og:url" content="https://www.utdnebula.com/about/contact" /> | ||
</Head> | ||
<Header text="Contact" /> | ||
|
||
<Header text="Contact Us" /> | ||
<div className="px-8 lg:px-16 xl:px-32 flex flex-col items-center gap-12"> | ||
<div className="flex flex-col items-center gap-12"> | ||
<h2 className="text-2xl gap-2"> | ||
Discord is the best place to stay up to date with our latest updates and events. | ||
</h2> | ||
<a | ||
className="hover:scale-105 transition" | ||
href="https://discord.gg/tcpcnfxmeQ" | ||
target="_blank" | ||
> | ||
<Image src="/join-discord-black.svg" alt="discord" width="200" height="60" /> | ||
</a> | ||
</div> | ||
<div className="flex flex-col items-center gap-8"> | ||
<h2 className="text-2xl">You can also find us on these platforms:</h2> | ||
<div className="flex flex-row items-center gap-12"> | ||
<a | ||
className={linkClasses + ' flex items-center gap-2'} | ||
href="https://instagram.com/utdnebula" | ||
target="_blank" | ||
> | ||
<Image src="/instagram-black.svg" alt="Instagram logo" width="30" height="30" /> | ||
</a> | ||
<a | ||
className={linkClasses + ' flex items-center gap-2'} | ||
href="https://linkedin.com/company/utdnebula" | ||
target="_blank" | ||
> | ||
<Image src="/linkedin-black.svg" alt="LinkedIn logo" width="30" height="30" /> | ||
</a> | ||
<a | ||
className={linkClasses + ' flex items-center gap-2'} | ||
href="https://github.com/utdnebula" | ||
target="_blank" | ||
> | ||
<Image src="/github-black.svg" alt="GitHub logo" width="30" height="30" /> | ||
</a> | ||
<a | ||
className={linkClasses + ' flex items-center gap-2'} | ||
href="mailto:[email protected]" | ||
target="_blank" | ||
> | ||
<Image src="/gmail-black.svg" alt="GitHub logo" width="30" height="30" /> | ||
</a> | ||
</div> | ||
</div> | ||
</div> | ||
<Footer /> | ||
</> | ||
); | ||
|