mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import React from 'react'
|
|
import { OnboardingLayout } from '../OnboardingLayout'
|
|
import { Box } from '../../elements/LayoutPrimitives'
|
|
import { styled } from '../../tokens/stitches.config'
|
|
|
|
const StyledImage = styled('img', {
|
|
position: 'relative',
|
|
width: '100%',
|
|
height: '100%',
|
|
'@smDown': {
|
|
width: '160%',
|
|
height: 'auto',
|
|
}
|
|
})
|
|
|
|
type OnboardingOrganizeInstructionsProps = {
|
|
pageNumber: number
|
|
}
|
|
|
|
export const OnboardingHighlightInstructions = (props: OnboardingOrganizeInstructionsProps) => {
|
|
return (
|
|
<OnboardingLayout
|
|
pageNumber={props.pageNumber}
|
|
title="Highlight and share"
|
|
subTitle="Information about creating and sharing highlights Amet minim mollit non deserunt ullamco est sit aliqua dolor do amet sint. Velit officia consequat duis enim velit mollit. Exercitation veniam consequat sunt nostrud amet."
|
|
>
|
|
<Box css={{
|
|
width: '100%',
|
|
height: '100%',
|
|
overflow: 'hidden',
|
|
'@smDown': {
|
|
width: '100%',
|
|
height: 'auto',
|
|
}
|
|
}}>
|
|
<StyledImage
|
|
src='/static/images/onboarding/highlight-and-share.svg'
|
|
alt="Highlight And Share"
|
|
/>
|
|
</Box>
|
|
</OnboardingLayout>
|
|
)
|
|
}
|