Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const StepsToDigitalizationSection = () => {
<h2><Span type="title" className={tw('!text-3xl')}><MarkdownInterpreter text={translation.title}/></Span></h2>
<Span className={tw('font-space font-semibold')}><MarkdownInterpreter text={translation.description}/></Span>
</div>
<Carousel hintNext={true} isLooping={true} isAutoLooping={true} heights={{ tablet: 300 }}>
<Carousel hintNext={true} isLooping={true} isAutoLooping={true} heights={{ tablet: 300 }} blurColor="hw-grayscale-50">
{items.map((value, index) => (
<div key={index} className={tw('px-[2.5%] h-full')}>
<TextImage {...value} className={tw('h-full overflow-hidden')}/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export const StorySliderSection = () => {

return (
<SectionBase className={tw('flex flex-col gap-y-8 w-full !max-w-[1600px]')} outerClassName={tw('!px-0')}>
<Carousel hintNext={true} isLooping={true} isAutoLooping={true} autoLoopingTimeOut={15000}>
<Carousel hintNext={true} isLooping={true} isAutoLooping={true} autoLoopingTimeOut={15000} blurColor="hw-grayscale-50">
{items.map((value, index) => (
<div key={index} className={tw('px-[2.5%] h-full')}>
<TextImage {...value} className={tw('h-full overflow-hidden')}/>
Expand Down
2 changes: 1 addition & 1 deletion landing-page/pages/story/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { Languages } from '@helpwave/common/hooks/useLanguage'
import { useTranslation } from '@helpwave/common/hooks/useTranslation'
import StoryHeader from '@/components/sections/story/StoryHeader'
import { Page } from '@/components/Page'
import { StorySliderSection } from '@/components/sections/landing/StoriesSliderSection'
import { StorySliderSection } from '@/components/sections/story/StoriesSliderSection'

type StoryTranslation = {
title: string
Expand Down
Loading