Begin styling projects page
All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 13m15s

This commit is contained in:
2025-08-13 07:42:38 +09:30
parent 9617feed0c
commit 69792d4faf
11 changed files with 172 additions and 5 deletions

View File

@@ -0,0 +1,11 @@
---
import type { HTMLAttributes } from "astro/types";
interface Props extends HTMLAttributes<"a"> {}
import Link from "@components/Link.astro";
const { href, ...attrs } = Astro.props as Props;
---
<Link href={href} {...attrs}><slot /></Link>