@@ -47,13 +93,39 @@ const Popup: React.FC<{ isOpen: boolean; onClose: () => void; children: React.Re
);
+interface SponsorInfo {
+ description: string;
+ logoPath: string;
+ websiteUrl?: string;
+ facebookUrl?: string;
+ instagramUrl?: string;
+}
+
const Sponsors: React.FC = () => {
const [selectedSponsor, setSelectedSponsor] = useState(null);
- const sponsorInfo = {
- "Drum Coffee": "Drum Coffee partnered with MCDi to provide ASL lessons on coffee-related signology, enhancing their ability to serve Deaf community members. This initiative promotes inclusivity and improves communication in their bustling cafe environment.",
- "Imagine Nation Brewing": "Imagine Nation Brewing hosted a vibrant fundraising event, donating proceeds to MCDi. Their generous support not only raised funds but also raised awareness about the Deaf community, making a significant impact on our mission.",
- "Gild Brewing": "Gild Brewing organized a community-focused fundraiser for MCDi, combining craft beer tasting with Deaf culture education. Their event not only raised funds but also fostered a deeper understanding of Deaf culture, making a significant impact on our mission.",
+ const sponsorInfo: Record = {
+ "Drum Coffee": {
+ description: "Drum Coffee partnered with MCDi to provide ASL lessons on coffee-related signology, enhancing their ability to serve Deaf community members. This initiative promotes inclusivity and improves communication in their bustling cafe environment.",
+ logoPath: "/sponsors/drum-coffee-missoula.png",
+ websiteUrl: "https://drumcoffeeroasting.com/",
+ facebookUrl: "https://www.facebook.com/drumcoffeemt",
+ instagramUrl: "https://www.instagram.com/drumcoffee/"
+ },
+ "Imagine Nation Brewing": {
+ description: "Imagine Nation Brewing hosted a vibrant fundraising event, donating proceeds to MCDi. Their generous support not only raised funds but also raised awareness about the Deaf community, making a significant impact on our mission.",
+ logoPath: "/sponsors/imagine-nation-brewing.png",
+ websiteUrl: "https://imaginenationbrewing.com/",
+ facebookUrl: "https://www.facebook.com/ImagineNationBrewing",
+ instagramUrl: "https://www.instagram.com/imaginenationbrewingco"
+ },
+ "Gild Brewing": {
+ description: "Gild Brewing organized a community-focused fundraiser for MCDi, combining craft beer tasting with Deaf culture education. Their event not only raised funds but also fostered a deeper understanding of Deaf culture, making a significant impact on our mission.",
+ logoPath: "/sponsors/gild-brewing.png",
+ websiteUrl: "https://www.gildbrewing.com/",
+ facebookUrl: "https://www.facebook.com/gildbrewing/",
+ instagramUrl: "https://www.instagram.com/gildbrewing/"
+ },
};
return (
@@ -66,32 +138,32 @@ const Sponsors: React.FC = () => {