diff --git a/components/app-layout.tsx b/components/app-layout.tsx new file mode 100644 index 0000000..d0d48be --- /dev/null +++ b/components/app-layout.tsx @@ -0,0 +1,14 @@ +import { ReactNode } from "react"; +import { Footer } from "./footer"; + +interface IAppLayoutProps { + children: ReactNode; +} +export function AppLayout({ children }: IAppLayoutProps) { + return ( + <> +
{children}
+