--- import "@/styles/starwind.css"; import "@/styles/global.css"; import Footer1 from "@/components/starwind-pro/footer-01/Footer1.astro"; import TopBarDropdown from "@/components/TopBarDropdown.astro"; import { Image } from "astro:assets"; import LogoLight from "@/assets/logo-light.svg"; interface Props { title: string; description?: string; image?: string; url?: string; } const { title, description = "Resuely", image = "/og-image.jpg", url = "https://resuely.com", } = Astro.props; const siteUrl = Astro.site?.toString() ?? url; const canonicalUrl = new URL(Astro.url.pathname, siteUrl).toString(); const ogImageUrl = new URL(image, siteUrl).toString(); const orgLogoUrl = new URL("/apple-touch-icon.png", siteUrl).toString(); const websiteSchema = { "@context": "https://schema.org", "@type": "WebSite", name: "Resuely", url: siteUrl, inLanguage: "es-VE", }; const organizationSchema = { "@context": "https://schema.org", "@type": "Organization", name: "Resuely", url: siteUrl, logo: orgLogoUrl, sameAs: ["https://git.rlugo.dev/resuely"], }; --- {title}