mirror of
https://github.com/UofCBaja/BajaUofCWebsite.git
synced 2025-06-15 13:24:17 -06:00
init home page
This commit is contained in:
parent
c146d70c7a
commit
79be600083
25
src/AboutUs/AboutUs.css
Normal file
25
src/AboutUs/AboutUs.css
Normal file
@ -0,0 +1,25 @@
|
||||
#aboutUs {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-content: center;
|
||||
}
|
||||
|
||||
#benefits {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.aboutUs article {
|
||||
display: grid;
|
||||
grid-template-columns: 50% 45%;
|
||||
column-gap: 15px;
|
||||
align-content: center;
|
||||
padding-top: 15px;
|
||||
padding-left: 5%;
|
||||
padding-right: 5%;
|
||||
}
|
||||
|
||||
.aboutUs img {
|
||||
height: 300px;
|
||||
width: 100%;
|
||||
}
|
@ -1,5 +1,42 @@
|
||||
export default function AboutsUs() {
|
||||
return (
|
||||
<p>About Us</p>
|
||||
);
|
||||
};
|
||||
import "./AboutUs.css";
|
||||
|
||||
const AboutsUs = () => {
|
||||
return (
|
||||
<main className="aboutUs">
|
||||
<img
|
||||
src="https://res.cloudinary.com/dpgrgsh7g/image/upload/v1710016930/IMG-20240207-WA0000_e1jcf4.jpg"
|
||||
alt="Schulich off Road Banner"
|
||||
/>
|
||||
<article>
|
||||
<img
|
||||
src="https://res.cloudinary.com/dpgrgsh7g/image/upload/v1710016930/IMG-20240207-WA0000_e1jcf4.jpg"
|
||||
alt="Who we are//temp"
|
||||
/>
|
||||
<p>Who we are</p>
|
||||
</article>
|
||||
<article>
|
||||
<p>
|
||||
What we do, breifly list the broad categories of what people do in our
|
||||
team
|
||||
</p>
|
||||
<img
|
||||
src="https://res.cloudinary.com/dpgrgsh7g/image/upload/v1710016930/IMG-20240207-WA0000_e1jcf4.jpg"
|
||||
alt="montage of images mainly showcasing team memebers working"
|
||||
/>
|
||||
</article>
|
||||
<article id="benefits">
|
||||
<p>
|
||||
What are the benefits of joing the team small list of how we actually
|
||||
beneit new members
|
||||
</p>
|
||||
<ul>
|
||||
<li>benefit 1</li>
|
||||
<li>benefit 2</li>
|
||||
<li>benefit 3</li>
|
||||
</ul>
|
||||
</article>
|
||||
</main>
|
||||
);
|
||||
};
|
||||
|
||||
export default AboutsUs;
|
||||
|
Loading…
x
Reference in New Issue
Block a user