← back to Homesonspec
apps/admin/src/app/live/page.tsx
16 lines
import LivePreview from "./LivePreview";
export const dynamic = "force-dynamic";
export default function LivePage() {
return (
<div>
<h1 className="text-2xl font-bold">Live site</h1>
<p className="mt-1 text-sm text-neutral-500">
The customer-facing storefront (<code>homesonspec.com</code>) embedded here — toggle desktop / mobile, reload, or open it full. Everything the ingestion loop publishes shows up here.
</p>
<LivePreview />
</div>
);
}