diff --git a/src/components/BaseHead.astro b/src/components/BaseHead.astro index e60a8d1..23813d4 100644 --- a/src/components/BaseHead.astro +++ b/src/components/BaseHead.astro @@ -1,4 +1,6 @@ --- +import "../style/global.css"; + export interface Props { title: string; description: string; diff --git a/src/pages/index.astro b/src/pages/index.astro index 12eb6ee..2980730 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -6,7 +6,6 @@ import HomePosts from "../components/HomePosts.astro"; import ColorScript from "../components/ColorScript.astro"; import { SITE_TITLE, SITE_DESCRIPTION } from "../config"; import { Content as About } from "./about.md"; -import "../styles/global.css"; const posts = await Astro.glob("../posts/*.md"); diff --git a/src/styles/global.css b/src/style/global.css similarity index 100% rename from src/styles/global.css rename to src/style/global.css