diff --git a/client/Home.jsx b/client/Home.jsx index 7659b39..0ee77a9 100644 --- a/client/Home.jsx +++ b/client/Home.jsx @@ -6,6 +6,7 @@ import CenterCover from './covers/CenterCover'; import SidebarCover from './covers/SidebarCover'; import StickyFooterCover from './covers/StickyFooterCover'; import StickyHeaderCover from './covers/StickyHeaderCover'; +import StepperCover from './covers/StepperCover'; import Layout from './Layout'; import useDocumentTitle from './useDocumentTitle'; @@ -67,6 +68,12 @@ const Home = () => {

Centering

+
+ + +

Stepper

+ +
diff --git a/client/covers/StepperCover.jsx b/client/covers/StepperCover.jsx new file mode 100644 index 0000000..c0ad80d --- /dev/null +++ b/client/covers/StepperCover.jsx @@ -0,0 +1,19 @@ +import React from 'react'; + +import Frame from '../placeholders/Frame'; + +const StepperCover = () => { + return ( + +
+
+
-
+
+
+
+
+
+ + ); +}; + +export default StepperCover; diff --git a/client/placeholders/VerticalLine.jsx b/client/placeholders/VerticalLine.jsx new file mode 100644 index 0000000..e098ed8 --- /dev/null +++ b/client/placeholders/VerticalLine.jsx @@ -0,0 +1,12 @@ +import React from 'react'; + +const VerticalLine = () => { + return ( +
+ ); +}; + +export default VerticalLine;