diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index c0c3dba..0261711 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,9 +1,11 @@ --- +import '../assets/main.css'; export interface Props { title: string; } const { title } = Astro.props; + --- @@ -12,7 +14,6 @@ const { title } = Astro.props; -