diff --git a/.lintstagedrc.json b/.lintstagedrc.json index c228e11..b2cf677 100644 --- a/.lintstagedrc.json +++ b/.lintstagedrc.json @@ -1,4 +1,4 @@ { "**/*.{md,mdx,html,astro,svelte,css}": ["pnpx prettier --write"], - "**/*.{js,ts,html,astro,svelte}": ["pnpx eslint --fix"] + "**/*.{js,ts,html,svelte}": ["pnpx eslint --fix"] } diff --git a/src/components/Card.astro b/src/components/Card.astro deleted file mode 100644 index c68fa2a..0000000 --- a/src/components/Card.astro +++ /dev/null @@ -1,63 +0,0 @@ ---- -export interface Props { - title: string; - body: string; - href: string; -} - -const { href, title, body } = Astro.props; ---- - -
- {body} -
- -