--- 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", text: "social" }, { url: "https://ayco.io/gh", icon: "github", }, { url: "https://codepen.io/ayoayco-the-styleful", icon: "codepen", text: "pens" } ]; ---