diff --git a/src/stories/Components/Cta.jsx b/src/stories/Components/Cta.jsx new file mode 100644 index 0000000..7afe2af --- /dev/null +++ b/src/stories/Components/Cta.jsx @@ -0,0 +1,30 @@ +export default () => { + return ( +
+
+
+
+ +
+
+

+ Professional services +

+

+ Build your SaaS solution with help from our experts +

+

+ Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum, sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium +

+ + Learn more + + + + +
+
+
+
+ ) +} \ No newline at end of file diff --git a/src/stories/Components/Cta.stories.jsx b/src/stories/Components/Cta.stories.jsx new file mode 100644 index 0000000..3c1002b --- /dev/null +++ b/src/stories/Components/Cta.stories.jsx @@ -0,0 +1,17 @@ +// Import Rating component +import Cta from './Cta'; + +export default { + title: 'DSR/Cta', + component: Cta, + // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/writing-docs/autodocs + tags: ['autodocs'], + parameters: { + // More on how to position stories at: https://storybook.js.org/docs/configure/story-layout + layout: 'fullscreen', + }, +}; + + + + export const CtaPage= (args) => ; diff --git a/src/stories/Components/Hero.jsx b/src/stories/Components/Hero.jsx new file mode 100644 index 0000000..e6763e7 --- /dev/null +++ b/src/stories/Components/Hero.jsx @@ -0,0 +1,105 @@ +import { useState } from "react" + +export default () => { + + const [state, setState] = useState(false) + + // Replace javascript:void(0) path with your path + const navigation = [ + { title: "Partners", path: "javascript:void(0)" }, + { title: "Customers", path: "javascript:void(0)" }, + { title: "Team", path: "javascript:void(0)" }, + + ] + + return ( + <> + +
+
+
+

+ Over 200 successful deals +

+

+ We help startups to grow and make money +

+

+ Sed ut perspiciatis unde omnis iste natus voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae. +

+
+ + Let's get started + + + Get access + + + + +
+
+
+ +
+
+
+

Trusted by the best companies

+
+ + + + +
+
+
+ + ) +} \ No newline at end of file diff --git a/src/stories/Components/Hero.stories.jsx b/src/stories/Components/Hero.stories.jsx new file mode 100644 index 0000000..1a79462 --- /dev/null +++ b/src/stories/Components/Hero.stories.jsx @@ -0,0 +1,18 @@ +// Import Rating component +import Hero from './Hero'; + +export default { + title: 'DSR/Hero', + component: Hero, + // This component will have an automatically generated Autodocs entry: https://storybook.js.org/docs/writing-docs/autodocs + tags: ['autodocs'], + parameters: { + // More on how to position stories at: https://storybook.js.org/docs/configure/story-layout + layout: 'fullscreen', + }, +}; + + + + export const HeroPage = (args) => ; +