diff --git a/.eslintignore b/.eslintignore index e4289393..99fffe67 100644 --- a/.eslintignore +++ b/.eslintignore @@ -9,6 +9,7 @@ out/** postcss.config.js postcss.config.cjs tailwind.config.js +tailwind.config.cjs vite.config.js /**/dist/**/* !**/*.mjs diff --git a/website/src/components/Header/Header.astro b/website/src/components/Header/Header.astro index 5f5b6556..c7f672c8 100644 --- a/website/src/components/Header/Header.astro +++ b/website/src/components/Header/Header.astro @@ -5,6 +5,7 @@ import * as CONFIG from '../../config'; import SidebarToggle from './SidebarToggle'; // import LanguageSelect from './LanguageSelect'; import Search from './Search'; +import CommandLineIcon from '@heroicons/react/20/solid/CommandLineIcon'; type Props = { currentPage: string; @@ -14,21 +15,28 @@ const { currentPage } = Astro.props as Props; // const lang = getLanguageFromURL(currentPage); --- -