Move styles to index component

This commit is contained in:
Cassidy Williams
2022-11-27 21:11:51 -06:00
parent beef580f04
commit 38cb45da26
2 changed files with 1 additions and 2 deletions

View File

@@ -1,6 +1,4 @@
--- ---
import "../global.css";
export interface Props { export interface Props {
title: string; title: string;
description: string; description: string;

View File

@@ -6,6 +6,7 @@ import HomePosts from "../components/HomePosts.astro";
import ColorScript from "../components/ColorScript.astro"; import ColorScript from "../components/ColorScript.astro";
import { SITE_TITLE, SITE_DESCRIPTION } from "../config"; import { SITE_TITLE, SITE_DESCRIPTION } from "../config";
import { Content as About } from "./about.md"; import { Content as About } from "./about.md";
import "../global.css";
const posts = await Astro.glob("../posts/*.md"); const posts = await Astro.glob("../posts/*.md");