diff --git a/.gitignore b/.gitignore index 6238ed9..e783703 100644 --- a/.gitignore +++ b/.gitignore @@ -21,4 +21,8 @@ pnpm-debug.log* .DS_Store /.idea/ -/.fleet/ \ No newline at end of file +/.fleet/ + +/.next/ + +next-env.d.ts diff --git a/src/components/Footer.astro b/src/components/Footer.astro index 835fe8b..9439812 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,5 +1,5 @@ --- - +import '../styles/components/Footer.scss' --- - diff --git a/src/components/NavBar.astro b/src/components/NavBar.astro index 334457a..9367e73 100644 --- a/src/components/NavBar.astro +++ b/src/components/NavBar.astro @@ -1,3 +1,6 @@ +--- +import '../styles/components/NavBar.scss'; +--- - diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index a173d9d..b0f70a3 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -1,6 +1,8 @@ --- import Footer from "@components/Footer.astro"; import NavBar from "@components/NavBar.astro"; +import '../styles/Layout.scss'; +import '../styles/GlobalLayout.css' --- @@ -24,61 +26,3 @@ import NavBar from "@components/NavBar.astro";