Skip to content

Commit

Permalink
updated track titles
Browse files Browse the repository at this point in the history
  • Loading branch information
danielyu12 committed Sep 24, 2023
1 parent 6a2e641 commit 3abf1be
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 3 deletions.
19 changes: 18 additions & 1 deletion src/assets/images/LandingPage/naturebg.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/images/LandingPage/track1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/images/LandingPage/track2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/assets/images/LandingPage/track3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 22 additions & 2 deletions src/components/LandingPageComponents/TrackModals.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,27 @@ const TrackModals = () => {
setTrack1Open(true);
}}
>
<img src={track1} alt="track 1" />
<img src={track1} alt="track 1" className="mb-[1vw]" />
<label className="font-misterpixel text-2xl text-white">
<span className="border-y-2 md:border-y-4 md:py-1">DIGITAL</span>{' '}
<span className="border-y-2 md:border-y-4 md:py-1">DREAMERS</span>
</label>
</button>
<button
className="mt-[10vh] md:mt-0 z-50"
onClick={() => {
setTrack2Open(true);
}}
>
<img src={track2} alt="track 2" />
<img src={track2} alt="track 2" className="mb-[1vw]" />
<label className="font-misterpixel text-2xl text-white">
<span className="border-y-2 md:border-y-4 md:py-1">
INCLUSIVE
</span>{' '}
<span className="border-y-2 md:border-y-4 md:py-1">
INNOVATION
</span>
</label>
</button>
<button
className="mt-[10vh] md:mt-0 z-50"
Expand All @@ -51,6 +63,14 @@ const TrackModals = () => {
}}
>
<img src={track3} alt="track 3" />
<label className="font-misterpixel text-2xl text-white">
<span className="border-y-2 md:border-y-4 md:py-1">
SUSTAINABLE
</span>{' '}
<span className="border-y-2 md:border-y-4 md:py-1">
SOLUTIONS
</span>
</label>
</button>
</div>
<Modal
Expand Down

0 comments on commit 3abf1be

Please sign in to comment.