diff --git a/src/layouts/MainLayout.astro b/src/layouts/MainLayout.astro index 9cbb2ad..1f8e685 100644 --- a/src/layouts/MainLayout.astro +++ b/src/layouts/MainLayout.astro @@ -1,15 +1,12 @@ --- -// Importing necessary components import Meta from "@components/Meta.astro"; import Navbar from "@components/sections/navbar&footer/Navbar.astro"; import FooterSection from "@components/sections/navbar&footer/FooterSection.astro"; import { SITE } from "@data/constants"; import type { Thing, WithContext } from "schema-dts"; -// Setting expected props const { title = SITE.title, meta, structuredData, lang = "fr" } = Astro.props; -// Interface to type-check the properties interface Props { title?: string; meta?: string; @@ -18,18 +15,11 @@ interface Props { } --- -
- -