From 4b537c4b043d8756b7053ace935fb78d78aa3f33 Mon Sep 17 00:00:00 2001 From: Avraham Sakal Date: Sun, 24 Nov 2024 09:41:43 -0500 Subject: [PATCH] chore: cleanup --- package.json | 1 - pnpm-lock.yaml | 3 -- src/components/Card.astro | 61 --------------------------------------- 3 files changed, 65 deletions(-) delete mode 100644 src/components/Card.astro diff --git a/package.json b/package.json index 4dfda54..9701c2a 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,6 @@ "typescript": "^5.6.3" }, "devDependencies": { - "@unocss/reset": "^0.64.1", "unocss": "^0.64.1" } } \ No newline at end of file diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ab602c2..7e7a7a4 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,9 +24,6 @@ importers: specifier: ^5.6.3 version: 5.6.3 devDependencies: - '@unocss/reset': - specifier: ^0.64.1 - version: 0.64.1 unocss: specifier: ^0.64.1 version: 0.64.1(postcss@8.4.49)(rollup@4.27.2)(vite@5.4.11(sass@1.81.0))(vue@3.5.13(typescript@5.6.3)) diff --git a/src/components/Card.astro b/src/components/Card.astro deleted file mode 100644 index bd6d597..0000000 --- a/src/components/Card.astro +++ /dev/null @@ -1,61 +0,0 @@ ---- -interface Props { - title: string; - body: string; - href: string; -} - -const { href, title, body } = Astro.props; ---- - - -