diff --git a/src/components/AuthPages/AuthLayout2.jsx b/src/components/AuthPages/AuthLayout2.jsx new file mode 100644 index 0000000..81dfc86 --- /dev/null +++ b/src/components/AuthPages/AuthLayout2.jsx @@ -0,0 +1,56 @@ +import React from "react"; +import { Link } from "react-router-dom"; + +export default function LoginLayout({ slogan, children }) { + return ( +
+ {/*
*/} +
+
+
+
+
+ {children && children} +
+
+ +

+ © {new Date().getFullYear()} - + + WrenchBoard + {" "} +

+
+
+
+
+
+ ); +}