-
Notifications
You must be signed in to change notification settings - Fork 2
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 #150 from HackRU/offseason
offseason
- Loading branch information
Showing
2 changed files
with
65 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,62 @@ | ||
"use client"; | ||
|
||
import { useState } from 'react'; | ||
import Image from 'next/image'; | ||
import { Button } from '@/app/ui/button'; | ||
|
||
export default function OffseasonPage() { | ||
return ( | ||
<main className="flex flex-col items-center justify-center w-screen h-screen relative"> | ||
|
||
{/* HackRU Information Section */} | ||
<section className="relative z-10 mt-20 text-center"> | ||
<h1 className="text-6xl font-extrabold text-white drop-shadow-lg"> | ||
HackRU Offseason | ||
</h1> | ||
<p className="mt-4 text-2xl text-gray-300 drop-shadow-md"> | ||
Thanks for your interest in HackRU! Our registrations are not open yet, but you can follow us on our social channels to stay updated. | ||
</p> | ||
<Button | ||
className="text-s text-grey-500 mt-2 hover:text-blue-500 cursor-pointer" | ||
onClick={() => window.open('https://www.instagram.com/thehackru/', '_blank')} | ||
> | ||
Follow us on Instagram | ||
</Button> | ||
</section> | ||
|
||
{/* Photos from the Last HackRU Section */} | ||
<section className="relative z-10 mt-20"> | ||
<h2 className="text-4xl font-semibold text-gray-200 text-center drop-shadow-md"> | ||
Photos from the last HackRU | ||
</h2> | ||
<div className="grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-6 mt-8"> | ||
<div className="relative w-80 h-60 overflow-hidden rounded-lg shadow-lg transform transition hover:scale-105 hover:shadow-2xl"> | ||
<Image src="/photo1.jpg" alt="Photo 1" layout="fill" objectFit="cover" /> | ||
</div> | ||
<div className="relative w-80 h-60 overflow-hidden rounded-lg shadow-lg transform transition hover:scale-105 hover:shadow-2xl"> | ||
<Image src="/photo2.jpg" alt="Photo 2" layout="fill" objectFit="cover" /> | ||
</div> | ||
<div className="relative w-80 h-60 overflow-hidden rounded-lg shadow-lg transform transition hover:scale-105 hover:shadow-2xl"> | ||
<Image src="/photo3.jpg" alt="Photo 3" layout="fill" objectFit="cover" /> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
{/* Linktree Section */} | ||
<section className="relative z-10 mt-20 text-center"> | ||
<h2 className="text-3xl font-semibold text-gray-200 drop-shadow-md"> | ||
Explore More | ||
</h2> | ||
<p className="mt-4 text-lg text-gray-300 drop-shadow-sm"> | ||
Check out all our links and resources on our Linktree! | ||
</p> | ||
<Button | ||
className="text-s text-grey-500 mt-2 hover:text-blue-500 cursor-pointer" | ||
onClick={() => window.open('https://linktr.ee/thehackru', '_blank')} | ||
> | ||
Visit Our Linktree | ||
</Button> | ||
</section> | ||
</main> | ||
); | ||
} |
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