diff --git a/src/app/(main)/support/layout.tsx b/src/app/(main)/support/layout.tsx new file mode 100644 index 0000000..ab1f142 --- /dev/null +++ b/src/app/(main)/support/layout.tsx @@ -0,0 +1,11 @@ +import Footer from "@/components/Layout/Footer"; +import { PropsWithChildren } from "react"; + +export default function Layout({ children }: PropsWithChildren) { + return ( + <> +
{children}
+