import type { BannerBlockProps } from '../types' import imageFile from './static/image.jpeg' export const mockBannerBlockProps: BannerBlockProps = { id: 'banner-block-mock-id', value: { title: 'Your Technology Partner', description: `

We are your trusted partner in solving complex problems with innovative technological solutions. Whether you're looking to optimize processes, scale your operations, or tackle new challenges, we are here to provide the expertise and tools you need to succeed.

`, featuredImage: { id: 1, downloadUrl: imageFile, imageSizes: { small: { width: 320, height: 320, imageUrl: imageFile, }, medium: { width: 768, height: 432, imageUrl: imageFile, }, mediumSquare: { width: 768, height: 768, imageUrl: imageFile, }, full: { width: 2048, height: 1436, imageUrl: imageFile, }, }, altText: 'Team working on innovative solutions', }, imagePosition: 'right', }, }