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