Skip to content

Commit

Permalink
Basic contact page
Browse files Browse the repository at this point in the history
  • Loading branch information
TyHil committed Feb 8, 2024
1 parent 98471c2 commit b0233c4
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions src/pages/contact.tsx
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 = () => (
<>
Expand All @@ -10,6 +14,57 @@ const Contact = () => (
<meta property="og:url" content="https://www.utdnebula.com/about/contact" />
</Head>
<Header text="Contact" />
<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-4">
<h2 className="text-2xl">
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-4">
<h2 className="text-2xl">You can also find us on these platforms:</h2>
<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" />
Instagram
</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" />
LinkedIn
</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" />
GitHub
</a>
</div>
<h2 className="text-2xl">
{'Contacts for our officers, division heads, and project leads can be found on the '}
<Link
href="/about/governance"
className="underline text-blue-600 hover:text-blue-800 visited:text-purple-600"
>
governance page
</Link>
.
</h2>
</div>
<Footer royalBg={false} />
</>
);
Expand Down

0 comments on commit b0233c4

Please sign in to comment.