--- import "@/styles/global.css" import { ClientRouter } from "astro:transitions" import Analytics from "@vercel/analytics/astro" interface Props { title?: string description?: string active?: "home" | "docs" } const { title = "Feynman - The open source AI research agent", description = "An AI-powered research agent that helps you discover, analyze, and synthesize scientific literature.", active = "home", } = Astro.props ---