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; ---- - -
- {body} -
- -