import React from "react"; import { PremiumNavbar } from "./PremiumNavbar"; import { PremiumFooter } from "./PremiumFooter"; type PremiumPageShellProps = { children: React.ReactNode; className?: string; }; export function PremiumPageShell({ children, className = "" }: PremiumPageShellProps) { return (
{/* Header/Navbar */} {/* Page Content */}
{children}
); }