diff --git a/client/App.jsx b/client/App.jsx index c50be8d..d946fe7 100644 --- a/client/App.jsx +++ b/client/App.jsx @@ -31,6 +31,7 @@ import StickyFooter from './layouts/sticky-footer/Details'; import StickyHeader from './layouts/sticky-header/Details'; import Switch from './layouts/switch/Details'; import Tab from './layouts/tab/Details'; +import Wizard from './layouts/wizard/Details'; const App = () => { return ( @@ -66,6 +67,7 @@ const App = () => { + ); diff --git a/client/Home.jsx b/client/Home.jsx index 2d6b24e..7ba61d7 100644 --- a/client/Home.jsx +++ b/client/Home.jsx @@ -30,6 +30,7 @@ import StickyFooterCover from './layouts/sticky-footer/Cover'; import StickyHeaderCover from './layouts/sticky-header/Cover'; import SwitchCover from './layouts/switch/Cover'; import TabCover from './layouts/tab/Cover'; +import WizardCover from './layouts/wizard/Cover'; import Layout from './Layout'; import useDocumentTitle from './hooks/useDocumentTitle'; @@ -255,6 +256,12 @@ const Home = () => {

Tab

+
+ + +

Wizard

+ +
diff --git a/client/layouts/wizard/Cover.jsx b/client/layouts/wizard/Cover.jsx new file mode 100644 index 0000000..4b18390 --- /dev/null +++ b/client/layouts/wizard/Cover.jsx @@ -0,0 +1,32 @@ +import React from 'react'; + +import Frame from '../../placeholders/Frame'; +import Line from '../../placeholders/Line'; + +const Cover = () => { + return ( + +
+
+
+
+
1
+
+
+
+
+
2
+
+
+
+
+
3
+
+
+
+
+ + ); +}; + +export default Cover; diff --git a/client/layouts/wizard/Details.jsx b/client/layouts/wizard/Details.jsx new file mode 100644 index 0000000..b6b3f4b --- /dev/null +++ b/client/layouts/wizard/Details.jsx @@ -0,0 +1,119 @@ +import React from 'react'; + +import DetailsLayout from '../../DetailsLayout'; +import Block from '../../placeholders/Block'; +import BrowserFrame from '../../placeholders/BrowserFrame'; +import Circle from '../../placeholders/Circle'; +import Line from '../../placeholders/Line'; +import SampleCode from '../../SampleCode'; + +const Details = () => { + return ( + + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ } + source={ + + +
+
+ +
+ + +
+ ... +
+ + +
+
+ + + ... +
+
+`} +/> + } + /> + + ); +}; + +export default Details;