From 4eed8abac1f93cfdfcd95033607d422430ae7346 Mon Sep 17 00:00:00 2001 From: victorAnumudu Date: Wed, 17 Jan 2024 19:52:49 +0100 Subject: [PATCH] added new layout auth layout page --- src/components/AuthPages/AuthLayout2.jsx | 56 ++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 src/components/AuthPages/AuthLayout2.jsx 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 + {" "} +

+
+
+
+
+
+ ); +}