AppShell.jsx 336 B

1234567891011121314
  1. import React from "react";
  2. import TopNav from "@/components/app-shell/TopNav";
  3. export default function AppShell({ children }) {
  4. return (
  5. <div className="min-h-screen flex flex-col">
  6. <TopNav />
  7. <div className="flex-1 px-4 py-4">
  8. <main className="mx-auto w-full min-w-0 lg:w-3/4">{children}</main>
  9. </div>
  10. </div>
  11. );
  12. }