--- // Importing necessary components import Meta from "@/components/Meta.astro"; import Navbar from "@/components/sections/Navbar.astro"; import FooterSection from "@/components/sections/FooterSection.astro"; import { SITE } from "@/data_files/constants"; // Setting expected props const { title = SITE.title, meta, structuredData, lang = "en" } = Astro.props; // Interface to type-check the properties interface Props { title?: string; meta?: string; structuredData?: object; lang?: string; } ---