Move styles to style folder, move ref to BaseHead

This commit is contained in:
Cassidy Williams
2022-11-27 21:41:13 -06:00
parent 12aaae9e79
commit 0eba426c6e
3 changed files with 2 additions and 1 deletions

View File

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

View File

@@ -6,7 +6,6 @@ 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 "../styles/global.css";
const posts = await Astro.glob("../posts/*.md"); const posts = await Astro.glob("../posts/*.md");