--- import '../../assets/css/main.css' import BgParticles from '../components/BgParticles.astro' import BgGrid from '../components/BgGrid.astro' import HeadFavicon from './HeadFavicon.astro' import Navbar from "../components/Navbar.astro"; interface Props { title?: string description?: string hasParticles?: boolean hasGrid?: boolean } const { title = "Home", hasParticles = false, hasGrid = false } = Astro.props const baseTitle = 'Alexis Pelé' const renderedTitle = `${title} · ${baseTitle}` const { description = baseTitle } = Astro.props const authorName = "Alexis Pelé" const authorUsername = "AlexisNP" const websiteDomain = "alexcreates.fr" ---