mirror of
https://github.com/UofCBaja/BajaUofCWebsite.git
synced 2025-07-07 19:57:13 -06:00
fix(OurSponsors): fixed spelling
This commit is contained in:
@ -9,7 +9,7 @@ import yaml from "js-yaml";
|
||||
* @returns {JSX.Element} JSX - HTML tags and JS functionality
|
||||
* @description Our Sponsors Page
|
||||
* @author Brock <darkicewolf50@gmail.com>
|
||||
* @todo finsih layout and add content
|
||||
* @todo finish layout and add content
|
||||
*/
|
||||
const OurSponsors = () => {
|
||||
const [currentSponsorsDict, setCurrentSponsorsDict] = useState(); //variable states for the dictionary of sponsors
|
||||
@ -91,7 +91,8 @@ const OurSponsors = () => {
|
||||
<a
|
||||
href={LinktoSponsorOutreachForm}
|
||||
target="_blank"
|
||||
rel="noreferrer">
|
||||
rel="noreferrer"
|
||||
>
|
||||
<img
|
||||
src="https://res.cloudinary.com/dpgrgsh7g/image/upload/v1711588091/qr-code_z5kmef.png"
|
||||
alt="QR code to contanct us form"
|
||||
@ -140,10 +141,7 @@ const OurSponsors = () => {
|
||||
</li>
|
||||
</ul>
|
||||
{/* the sponsorship package replicated */}
|
||||
<a
|
||||
href={LinktoSponsorOutreachForm}
|
||||
target="_blank"
|
||||
rel="noreferrer">
|
||||
<a href={LinktoSponsorOutreachForm} target="_blank" rel="noreferrer">
|
||||
<table>
|
||||
<caption>
|
||||
<h3>Sponsor Packages</h3>
|
||||
@ -265,9 +263,7 @@ const OurSponsors = () => {
|
||||
let gridItem = changetoGridStyle ? "" : "sponsorGridItem";
|
||||
|
||||
return (
|
||||
<div
|
||||
key={sponsorsTier}
|
||||
className="Sponsors">
|
||||
<div key={sponsorsTier} className="Sponsors">
|
||||
<h3>{sponsorsTier}</h3>
|
||||
<div className={girdContainer}>
|
||||
{/* gets key form list of tier */}
|
||||
@ -292,7 +288,8 @@ const OurSponsors = () => {
|
||||
href={sponsorData.Url}
|
||||
target="_blank"
|
||||
className={gridItem}
|
||||
rel="noreferrer">
|
||||
rel="noreferrer"
|
||||
>
|
||||
<div>
|
||||
<img
|
||||
src={sponsorData.LogoUrl}
|
||||
@ -328,9 +325,7 @@ const OurSponsors = () => {
|
||||
<div id="Sponsor">
|
||||
<div id="sideBorder">
|
||||
<div></div>
|
||||
<h1
|
||||
className="SponsorsTitle"
|
||||
id="SponsorEnd">
|
||||
<h1 className="SponsorsTitle" id="SponsorEnd">
|
||||
Past Sponsors
|
||||
</h1>
|
||||
</div>
|
||||
@ -355,7 +350,8 @@ const OurSponsors = () => {
|
||||
href={pastSponsors.Url}
|
||||
target="_blank"
|
||||
className="sponsorGridItem"
|
||||
rel="noreferrer">
|
||||
rel="noreferrer"
|
||||
>
|
||||
<div>
|
||||
<img
|
||||
src={pastSponsors.LogoUrl}
|
||||
|
Reference in New Issue
Block a user