Skip to content

Commit

Permalink
add registration
Browse files Browse the repository at this point in the history
  • Loading branch information
ImNotRog committed Nov 23, 2023
1 parent 8a3e794 commit e40cef5
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/(landing)/Heading.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ const overpass = Overpass({

export default function Heading() {
return (
<section id="heading" className="text-white text-center h-screen relative flex flex-col items-center justify-center p-5 pb-[30vh]">
<section id="heading" className="text-white text-center h-screen relative flex flex-col items-center justify-center p-5 pb-[20vh]">

<div className={'mb-2 relative flex flex-col items-center md:block ' + overpass.className}>
<span className="pt-2 text-6xl md:text-9xl tracking-wider">GunnHa<span className="invisible">XX</span></span>
<img className="absolute w-32 md:w-64 left-[15rem] top-[-1.6rem] md:left-[calc(26rem)] md:top-[-3rem]" src="/X.svg" alt="X" />
Expand Down
19 changes: 19 additions & 0 deletions src/app/register/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import type { Metadata } from 'next';


export const metadata: Metadata = {
title: 'Register | GunnHacks 9.0'
}

export default function Register() {
return (
<div className="flex justify-center">
<iframe
src="https://docs.google.com/forms/d/e/1FAIpQLSdF_KFH0pH_ryAx3uYglID2ITeXvoTaHfTh2i9YMgnlwLC91A/viewform?usp=sf_link&embedded=true"
className="absolute border-none w-full h-full inset-0 mx-auto"
>
Loading…
</iframe>
</div>
)
}

1 comment on commit e40cef5

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Deploy preview for gunnhacks10 ready!

✅ Preview
https://gunnhacks10-cgqudgdzy-imnotrog.vercel.app

Built with commit e40cef5.
This pull request is being automatically deployed with vercel-action

Please sign in to comment.