diff --git a/src/components/Footer.astro b/src/components/Footer.astro index b467210..0a9d050 100644 --- a/src/components/Footer.astro +++ b/src/components/Footer.astro @@ -1,36 +1,36 @@ --- -import NavLink from '@components/nav/NavLink.astro'; -import { fetchGlobalData } from '@utils/data/global/index.js'; +import NavLink from "@components/nav/NavLink.astro"; +import { fetchGlobalData } from "@utils/data/global/index.js"; const { updated } = Astro.props; const { nav } = await fetchGlobalData(Astro); --- -