refactor(layout): move style import to baselayout

This commit is contained in:
Jewgeni Lewash 2024-02-27 23:10:49 +01:00
parent cc56520e5d
commit 144be38910
2 changed files with 1 additions and 1 deletions

View File

@ -1,5 +1,4 @@
--- ---
import '@/styles/globals.css';
import { Image } from 'astro:assets'; import { Image } from 'astro:assets';
import { ModeToggle } from '@/components/ModeToggle'; import { ModeToggle } from '@/components/ModeToggle';

View File

@ -1,4 +1,5 @@
--- ---
import '@/styles/globals.css';
import Header from '@/components/layout/Header.astro'; import Header from '@/components/layout/Header.astro';
const { title } = Astro.props; const { title } = Astro.props;
--- ---