--- import "./reset.css"; import Head from "../components/Head.astro"; import Nav from "../components/Nav.astro"; import type { Link } from "../components/Nav.astro"; export interface Props { title?: string; description?: string; } const { title, description } = Astro.props; const links: Link[] = [ { url: "https://ayos.blog", icon: "blog", }, { url: "https://ayco.io/@ayo", icon: "mastodon", }, { url: "https://ayco.io/github", icon: "github", }, ]; ---