--- import Layout from "./Layout.astro"; import Navbar from "@components/Navbar.astro"; import SideBar from "@components/widget/SideBar.astro"; import Footer from "@components/Footer.astro"; import BackToTop from "@components/control/BackToTop.astro"; interface Props { title?: string; banner?: string; description?: string; } const { title, banner, description } = Astro.props ---