Fix storybook image paths

This commit is contained in:
adilallo
2025-08-21 10:41:48 -06:00
parent 52fa98ef67
commit 5d873efe21
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -9,37 +9,37 @@ const LogoWall = ({ logos = [] }) => {
// Default logos if none provided - ordered for mobile (3 rows × 2 columns) // Default logos if none provided - ordered for mobile (3 rows × 2 columns)
const defaultLogos = [ const defaultLogos = [
{ {
src: "/assets/Section/Logo_FoodNotBombs.png", src: "assets/Section/Logo_FoodNotBombs.png",
alt: "Food Not Bombs", alt: "Food Not Bombs",
size: "h-11 lg:h-14 xl:h-[70px]", size: "h-11 lg:h-14 xl:h-[70px]",
order: "order-1 sm:order-4", // Mobile: row 1 col 1, SM: row 2 col 1 (bottom left) order: "order-1 sm:order-4", // Mobile: row 1 col 1, SM: row 2 col 1 (bottom left)
}, },
{ {
src: "/assets/Section/Logo_StartCOOP.png", src: "assets/Section/Logo_StartCOOP.png",
alt: "Start COOP", alt: "Start COOP",
size: "h-[42px] lg:h-[53px] xl:h-[66px]", size: "h-[42px] lg:h-[53px] xl:h-[66px]",
order: "order-2 sm:order-2", // Mobile: row 1 col 2, SM: row 1 col 2 (top middle) order: "order-2 sm:order-2", // Mobile: row 1 col 2, SM: row 1 col 2 (top middle)
}, },
{ {
src: "/assets/Section/Logo_Metagov.png", src: "assets/Section/Logo_Metagov.png",
alt: "Metagov", alt: "Metagov",
size: "h-6 lg:h-8 xl:h-[41px]", size: "h-6 lg:h-8 xl:h-[41px]",
order: "order-3 sm:order-1", // Mobile: row 2 col 1, SM: row 1 col 1 (top left) order: "order-3 sm:order-1", // Mobile: row 2 col 1, SM: row 1 col 1 (top left)
}, },
{ {
src: "/assets/Section/Logo_OpenCivics.png", src: "assets/Section/Logo_OpenCivics.png",
alt: "Open Civics", alt: "Open Civics",
size: "h-8 lg:h-10 xl:h-[50px]", size: "h-8 lg:h-10 xl:h-[50px]",
order: "order-4 sm:order-5 md:order-6", // Mobile: row 2 col 2, SM: row 2 col 2, MD: swapped with Mutual Aid CO order: "order-4 sm:order-5 md:order-6", // Mobile: row 2 col 2, SM: row 2 col 2, MD: swapped with Mutual Aid CO
}, },
{ {
src: "/assets/Section/Logo_MutualAidCO.png", src: "assets/Section/Logo_MutualAidCO.png",
alt: "Mutual Aid CO", alt: "Mutual Aid CO",
size: "h-11 lg:h-14 xl:h-[70px]", size: "h-11 lg:h-14 xl:h-[70px]",
order: "order-5 sm:order-6 md:order-5", // Mobile: row 3 col 1, SM: row 2 col 3, MD: swapped with OpenCivics order: "order-5 sm:order-6 md:order-5", // Mobile: row 3 col 1, SM: row 2 col 3, MD: swapped with OpenCivics
}, },
{ {
src: "/assets/Section/Logo_CUBoulder.png", src: "assets/Section/Logo_CUBoulder.png",
alt: "CU Boulder", alt: "CU Boulder",
size: "h-10 lg:h-12 xl:h-[60px]", size: "h-10 lg:h-12 xl:h-[60px]",
order: "order-6 sm:order-3", // Mobile: row 3 col 2, SM: row 1 col 3 (top right) order: "order-6 sm:order-3", // Mobile: row 3 col 2, SM: row 1 col 3 (top right)
+1 -1
View File
@@ -11,7 +11,7 @@ const inter = Inter({
const bricolageGrotesque = Bricolage_Grotesque({ const bricolageGrotesque = Bricolage_Grotesque({
subsets: ["latin"], subsets: ["latin"],
weight: ["400"], weight: ["400", "500"],
variable: "--font-bricolage-grotesque", variable: "--font-bricolage-grotesque",
}); });