You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

27 rivejä
822 B

  1. import {createIntro} from "./IntroComponent";
  2. export default {
  3. title: 'Sections/Intro',
  4. parameters: {
  5. layout: 'fullscreen',
  6. },
  7. argTypes: {
  8. headline: {
  9. name: 'Überschrift',
  10. control: 'text',
  11. defaultValue: 'Beratung und Service',
  12. },
  13. copy: {
  14. name: 'Einleitungstext',
  15. control: 'text',
  16. defaultValue: 'Wir beraten Unternehmen – egal ob Sie Fragen zur Gründung haben, Fördermittel beantragen oder expandieren möchten. Wir stehen Ihnen in allen Phasen der Unternehmensentwicklung mit Rat und Tat zur Seite und sind Ihre erste Anlaufstelle. Verschaffen Sie sich einen Überblick über unsere Service- und Beratungsangebote!',
  17. }
  18. }
  19. }
  20. const Template = ({...args}) => {
  21. return createIntro({...args});
  22. }
  23. export const Intro = Template.bind({});
  24. Intro.args = {};