completely refactored utilities for direct rendering, killed iframes
This commit is contained in:
parent
12dd2c6c06
commit
f08a7456ee
37 changed files with 1824 additions and 1350 deletions
16
app/portal/buying-guide/page.tsx
Normal file
16
app/portal/buying-guide/page.tsx
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
"use client";
|
||||
|
||||
import dynamic from "next/dynamic";
|
||||
|
||||
const BuyingGuideSwitcher = dynamic(
|
||||
() => import("@/components/portal/BuyingGuideSwitcher"),
|
||||
{ ssr: false }
|
||||
);
|
||||
|
||||
export default function PortalBuyingGuidePage() {
|
||||
return (
|
||||
<div className="p-6">
|
||||
<BuyingGuideSwitcher />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue