fix(homePage): img alt text fixed, ready for demo

This commit is contained in:
darkicewolf50 2025-03-08 12:53:41 -07:00
parent cf71002168
commit 0ad1debb68
2 changed files with 25 additions and 9 deletions

View File

@ -2,7 +2,7 @@
display: flex;
position: relative;
justify-content: end;
justify-content: flex-end;
align-items: center;
}
@ -13,7 +13,7 @@
background-size: cover;
background-position: center;
position: absolute;
position: relative;
z-index: 0;
}
@ -32,8 +32,8 @@
margin: 0px;
}
#HomeTop div h2 {
}
/* #HomeTop div h2 {
} */
#HomePageLayout div {
display: flex;

View File

@ -35,7 +35,11 @@ export default function Home() {
return (
<>
<div id="HomeTop">
<img id="HomeBannerTop" />
<img
id="HomeBannerTop"
src="https://picsum.photos/200"
alt="cool shot of driver in car, replace later"
/>
<div>
<h1>UCalgary Baja</h1>
<h2>Catchphase goes here</h2>
@ -43,7 +47,10 @@ export default function Home() {
</div>
<div id="HomePageLayout">
<div>
<img src="https://picsum.photos/200" />
<img
src="https://picsum.photos/200"
alt="the team?"
/>
<div>
<h2>Who We Are</h2>
<p>
@ -87,7 +94,10 @@ export default function Home() {
<Link to={"/"}>Learn More</Link>
{/* Replace with Join later*/}
</div>
<img src="https://picsum.photos/200" />
<img
src="https://picsum.photos/200"
alt="possibly a montage mainly showcasing team members working"
/>
</div>
<div>
Sponsor Section
@ -97,7 +107,10 @@ export default function Home() {
</div>
</div>
<div>
<img src="https://picsum.photos/200" />
<img
src="https://picsum.photos/200"
alt="something to do with sponsors"
/>
<div>
<h2>Sponsor Us</h2>
<p>
@ -111,7 +124,10 @@ export default function Home() {
</div>
</div>
<div>
<img src="https://picsum.photos/200" />
<img
src="https://picsum.photos/200"
alt="(If we do a rotating images thing for the top, and still want to keep this on the bottom, maybe we can change it to a more collage type thing for this box)"
/>
</div>
</div>
</>