diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro index 22a3309..99eaab4 100644 --- a/src/layouts/BaseLayout.astro +++ b/src/layouts/BaseLayout.astro @@ -7,17 +7,24 @@ import Footer from '@/components/layout/Footer.astro'; interface Props { title: string; description: string; + lang?: string; + index?: boolean; + follow?: boolean; } -const { title, description } = Astro.props as Props; +const { title, description, lang = 'en', index, follow } = Astro.props as Props; --- - +