feat(Style): change layout to allow navbar to expand the whole width

This commit is contained in:
Alexander Navarro 2024-03-15 10:12:50 -03:00
parent d7a9817514
commit 8f36d1cd02
3 changed files with 20 additions and 10 deletions

View file

@ -5,8 +5,8 @@ export interface Props {
}
import '../assets/style/style.scss';
import Navbar from '../components/Navbar.astro';
import Spinner from '../components/Spinner.astro';
import Navbar from '@components/Navbar.astro';
import Spinner from '@components/Spinner.astro';
const { title } = Astro.props;
---