import Navbar from "@/_components/Navbar";
import { PageTransitionWrapper } from "@/_components/PageTransition";

export default function RootLayout({
  children,
}: Readonly<{
  children: React.ReactNode;
}>) {
  return (
    <main className="min-h-screen flex flex-col justify-between">
      <div className="flex-1 flex flex-col">
        <Navbar />
        <section className="flex-1 max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 w-full h-full"><PageTransitionWrapper>{children}</PageTransitionWrapper></section>
      </div>
    </main>
  );
}
