diff --git a/src/Project/Sugcon2024/Sugcon/src/components/Sponsors/SponsorListing.tsx b/src/Project/Sugcon2024/Sugcon/src/components/Sponsors/SponsorListing.tsx index c3c8a4b50..fe0af36ce 100644 --- a/src/Project/Sugcon2024/Sugcon/src/components/Sponsors/SponsorListing.tsx +++ b/src/Project/Sugcon2024/Sugcon/src/components/Sponsors/SponsorListing.tsx @@ -31,6 +31,7 @@ import { HStack, Center, } from '@chakra-ui/react'; +import { LayoutFlex } from 'components/Templates/LayoutFlex'; export interface SponsorListingProps { params: ComponentParams; @@ -97,7 +98,7 @@ const SponsorListingWrapper = (props: SponsorListingWrapperProps): JSX.Element = return (
- + {/* Rendering Title if it exists */} @@ -120,7 +121,7 @@ const SponsorListingWrapper = (props: SponsorListingWrapperProps): JSX.Element = - +
); @@ -145,7 +146,7 @@ export const FullDetails = (props: SponsorListingProps): JSX.Element => { {/* Map through each sponsor and render their details */} {props.fields.Sponsors.map((sponsor, index) => ( - + {/* Render sponsor logo */} @@ -226,12 +227,7 @@ export const LogoOnly = (props: SponsorListingProps): JSX.Element => { {props.fields.Sponsors.map((sponsor, index) => ( {/* Render sponsor logo as a button */} - + ))}