--- import "@/style/globals.css"; import { ClientRouter } from "astro:transitions"; import Header from "@/components/header"; import Footer from "@/components/footer"; import Background from "@/components/background"; import ThemeSwitcher from "@/components/theme-switcher"; import AnimationSwitcher from "@/components/animation-switcher"; import VercelAnalytics from "@/components/analytics"; import MobileNav from "@/components/mobile-nav"; import { THEME_LOADER_SCRIPT, THEME_NAV_SCRIPT } from "@/lib/themes/loader"; import { ANIMATION_LOADER_SCRIPT, ANIMATION_NAV_SCRIPT } from "@/lib/animations/loader"; export interface Props { title: string; description: string; } const { title, description } = Astro.props; const ogImage = "https://timmypidashev.dev/og-image.jpg"; --- {title}