--- import BaseLayout from "./BaseLayout.astro"; import Sidebar from "../components/navigation/Sidebar"; import RightSidebar from "../components/navigation/RightSidebar"; import MobileNav from "../components/navigation/MobileNav"; import type { UserProfile } from "../types"; interface Props { title?: string; description?: string; image?: string; user?: UserProfile | null; } const { title, description, image, user = Astro.locals.user } = Astro.props; ---