+
Patterns
-
-
-
-
-
Badge
-
-
-
-
-
-
Breadcrumb
-
-
-
-
-
-
Button with icon
-
-
-
-
-
-
Card
-
-
-
-
-
-
Centering
-
-
-
-
-
-
Fixed at corner
-
-
-
-
-
-
Input addon
-
-
-
-
-
-
Media object
-
-
-
-
-
-
Menu
-
-
-
-
-
-
Modal
-
-
-
-
-
-
Notification
-
-
-
-
-
-
-
Previous next buttons
-
-
-
-
-
-
-
-
Same height columns
-
-
-
-
-
-
Slider
-
-
-
-
-
-
Stepper input
-
-
-
-
-
-
Switch
-
+
+
+
+
+
Badge
+
+
+
+
+
+
Breadcrumb
+
+
+
+
+
+
Button with icon
+
+
+
+
+
+
Card
+
+
+
+
+
+
Centering
+
+
+
+
+
+
Fixed at corner
+
+
+
+
+
+
Input addon
+
+
+
+
+
+
Media object
+
+
+
+
+
+
Menu
+
+
+
+
+
+
Modal
+
+
+
+
+
+
Notification
+
+
+
+
+
+
+
Previous next buttons
+
+
+
+
+
+
+
+
Same height columns
+
+
+
+
+
+
Slider
+
+
+
+
+
+
Stepper input
+
+
+
+
+
+
Switch
+
+
diff --git a/client/Layout.jsx b/client/Layout.jsx
index c7714f8..1efcb53 100644
--- a/client/Layout.jsx
+++ b/client/Layout.jsx
@@ -1,90 +1,18 @@
import React, { useEffect } from 'react';
+import Footer from './Footer';
+
const Layout = ({ children }) => {
useEffect(() => {
window.scrollTo(0, 0);
}, []);
return (
- <>
-
- {children}
-
-
-
-
-
-
© 2019 Nguyen Huu Phuoc and contributors
-
-
-
-
- >
+
+ {children}
+
+
+
);
};