fix: update Dockerfile and remove .next from git

This commit is contained in:
2026-01-14 18:49:57 +00:00
parent 91fc911523
commit ed2c303d6f
252 changed files with 1537 additions and 10866 deletions

View File

@@ -0,0 +1,16 @@
import Navbar from "@/components/Navbar";
import Footer from "@/components/Footer";
export default function MarketingLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<>
<Navbar />
{children}
<Footer />
</>
);
}