From 10a655e21cdea6659f6b242f4067a59596620061 Mon Sep 17 00:00:00 2001 From: Web Dev Simplified Date: Tue, 3 Mar 2026 12:57:40 -0600 Subject: [PATCH] Add Mobile View Freebies --- src/components/FreebieSidebar.astro | 328 +++++++++++---------- src/components/FreebieSidebarContent.astro | 201 +++++++++++++ src/data/freebies.ts | 4 + 3 files changed, 378 insertions(+), 155 deletions(-) create mode 100644 src/components/FreebieSidebarContent.astro diff --git a/src/components/FreebieSidebar.astro b/src/components/FreebieSidebar.astro index 7591611..e70cf7c 100644 --- a/src/components/FreebieSidebar.astro +++ b/src/components/FreebieSidebar.astro @@ -1,6 +1,6 @@ --- import type { Freebie } from "../data/freebies" -import Tag from "./Tag" +import FreebieSidebarContent from "./FreebieSidebarContent.astro" export interface Props { freebie: Freebie @@ -10,56 +10,57 @@ const { freebie } = Astro.props --- -