diff --git a/app/(landing)/page.tsx b/app/(landing)/page.tsx index e669c5d..15e207f 100644 --- a/app/(landing)/page.tsx +++ b/app/(landing)/page.tsx @@ -28,18 +28,30 @@ export default function Page() { * component to a relevant loading component. */ } - + Loading Schedule!}> - + Loading Sponsors!}> - + + bottom image diff --git a/app/(landing)/sections/GenericSection.tsx b/app/(landing)/sections/GenericSection.tsx index a3977d2..77ab8f9 100644 --- a/app/(landing)/sections/GenericSection.tsx +++ b/app/(landing)/sections/GenericSection.tsx @@ -4,10 +4,12 @@ import { ReactNode } from 'react'; type GenericSectionProps = { children: ReactNode; title: string; - color: string; + color?: string; }; export default function GenericSection(props: GenericSectionProps) { + const defaultColor = 'bg-blue-100'; + const bgColorNew = props.color ? `${props.color}` : defaultColor; return (
{props.children} -
+
); } diff --git a/public/landing/wand-cats-combined.png b/public/landing/wand-cats-combined.png new file mode 100644 index 0000000..eb68d3e Binary files /dev/null and b/public/landing/wand-cats-combined.png differ