fix(index): 🎨 fix TOC, add Nunito font

This commit is contained in:
z0x 2025-01-17 20:36:33 -05:00
parent d81008b119
commit 06d90b6413
8 changed files with 23 additions and 35 deletions

View file

@ -4,14 +4,14 @@ import Head from "@components/Head.astro";
import { SITE } from "@consts";
type Props = {
title: string;
description: string;
title: string;
description: string;
};
const { title, description } = Astro.props;
---
<html>
<html lang="en">
<head>
<Head title={`${title} | ${SITE.TITLE}`} description={description} />
</head>