---
// The site chrome for every restaurant page — THIS file (header/footer/nav) plus the @theme
// token block in src/styles/global.css are what you brand. Keep the
// in
, the global.css import, and one OrderCartButton in the header + one
// OrderCartDrawer per page (both client:only — they read browser cart state and must not
// server-render). (If another vertical is also deployed, its SiteLayout may have won; merge
// the Menu/Reservations nav links and the order-cart mounts there instead.)
import OrderCartButton from "../components/restaurants/OrderCartButton";
import OrderCartDrawer from "../components/restaurants/OrderCartDrawer";
import "../styles/global.css";
interface Props {
title: string;
description?: string;
}
const { title, description } = Astro.props;
---
{title}
{description && }