-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/94/create-about-section
- Loading branch information
Showing
13 changed files
with
15,553 additions
and
13 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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,40 @@ | ||
import { HeroBackgroundMobile, HeroBackgroundDesktop } from '@assets'; | ||
|
||
const HeroSection = () => { | ||
return ( | ||
<div className="stacked place-items-end-center sm:place-items-start"> | ||
<HeroBackgroundMobile | ||
className={'media block pb-16 sm:hidden xl:translate-y-20'} | ||
/> | ||
<HeroBackgroundDesktop | ||
className={'media hidden sm:block xl:translate-y-20'} | ||
/> | ||
|
||
<div className="space-y-1 pb-4 text-center sm:pl-24 sm:pt-12 sm:text-left lg:pl-16 lg:pt-16 2xl:pl-60 2xl:pt-24"> | ||
<img | ||
className="inline-block aspect-square w-20 sm:mx-0 lg:w-28 xl:w-32 2xl:w-52" | ||
src="src/assets/logo.svg" | ||
alt="Hawkhack logo" | ||
/> | ||
<div className="sm:space-y-2"> | ||
<h1 className="bg-gradient-to-b from-[#2B6469] to-[#00CEDB] bg-clip-text text-4xl font-extrabold text-transparent lg:text-5.5xl xl:text-7xl"> | ||
HawkHack 2024 | ||
</h1> | ||
<p className="font-semibold text-[#2B6469] xl:text-2xl 2xl:text-3.5xl "> | ||
Hosted at Wilfrid Laurier University | ||
</p> | ||
</div> | ||
<div> | ||
<p className="text-2xl font-bold text-[#2B6469] sm:hidden"> | ||
April 5th - 7th | ||
</p> | ||
<p className="text-2xl font-bold text-[#2B6469] sm:hidden"> | ||
In Person | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export { HeroSection }; |
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