Przeglądaj źródła

Merge branch 'worktree-agent-a43c2e56'

User 2 miesięcy temu
rodzic
commit
b392538fc4
1 zmienionych plików z 8 dodań i 1 usunięć
  1. 8 1
      src/app/(public)/layout.tsx

+ 8 - 1
src/app/(public)/layout.tsx

@@ -1,3 +1,10 @@
+import { TMDBFooter } from "@/components/shared/tmdb-footer";
+
 export default function PublicLayout({ children }: { children: React.ReactNode }) {
-  return <>{children}</>;
+  return (
+    <div className="flex min-h-screen flex-col">
+      <div className="flex-1">{children}</div>
+      <TMDBFooter />
+    </div>
+  );
 }