--- import '@/styles/global.css' import '@fontsource-variable/roboto' import '@fontsource/orbitron/900.css' import '@fortawesome/fontawesome-free/css/fontawesome.min.css' import '@fortawesome/fontawesome-free/css/solid.min.css' import '@fortawesome/fontawesome-free/css/brands.min.css' import Footer from '@/components/layout/parts/Footer.astro' export interface Props { title?: string description?: string imageUrl?: string } const { title, description, imageUrl } = Astro.props const permalink = new URL(Astro.url.pathname, Astro.site).href const seoTitle = title === undefined ? 'Juggernaut Plays' : `${title} | Juggernaut Plays` const seoDescription = description === undefined ? 'Oops, parece que no hay descripción.' : description const seoImage = imageUrl === undefined ? 'https://srjuggernaut.dev/DefaultOG.png' : imageUrl --- {seoTitle}