diff --git a/frontend/src/components/static-pages/section/index.tsx b/frontend/src/components/static-pages/section/index.tsx index 5345f1fe..a6862ea3 100644 --- a/frontend/src/components/static-pages/section/index.tsx +++ b/frontend/src/components/static-pages/section/index.tsx @@ -29,7 +29,7 @@ export type SectionProps = PropsWithChildren<{ const Section = forwardRef(({ borderTop = true, children }, ref) => (
diff --git a/frontend/src/containers/about/logos-grid/index.tsx b/frontend/src/containers/about/logos-grid/index.tsx index 5ec3c59d..cdcd3484 100644 --- a/frontend/src/containers/about/logos-grid/index.tsx +++ b/frontend/src/containers/about/logos-grid/index.tsx @@ -19,11 +19,12 @@ const logosGridVariants = cva('', { }); type LogosGridProps = VariantProps & { + className?: string; type: 'team' | 'funders'; }; -const LogosGrid: React.FC = ({ type, columns }) => ( -
+const LogosGrid: React.FC = ({ className, type, columns }) => ( +
{LOGOS[type].map(({ logo, alt, link, description, width, height }) => (
diff --git a/frontend/src/layouts/static-page.tsx b/frontend/src/layouts/static-page.tsx index b2da40ce..2d4bdf31 100644 --- a/frontend/src/layouts/static-page.tsx +++ b/frontend/src/layouts/static-page.tsx @@ -27,7 +27,7 @@ const Sidebar: React.FC = ({ sections }) => { }; return ( -
+