diff --git a/src/components/DownloadSection/DownloadSection.tsx b/src/components/DownloadSection/DownloadSection.tsx index 14f0db6..907531c 100644 --- a/src/components/DownloadSection/DownloadSection.tsx +++ b/src/components/DownloadSection/DownloadSection.tsx @@ -140,7 +140,7 @@ const DownloadSection: FC = ({ variant }) => { Home screen of the Android app )} diff --git a/src/components/FeatureItem/index.ts b/src/components/FeatureItem/index.ts index 6bf6bf4..6b8f38c 100644 --- a/src/components/FeatureItem/index.ts +++ b/src/components/FeatureItem/index.ts @@ -1 +1,2 @@ export { default } from './FeatureItem'; +export * from './types'; diff --git a/src/components/FeaturesSection/FeaturesSection.tsx b/src/components/FeaturesSection/FeaturesSection.tsx index 49e0682..c529f09 100644 --- a/src/components/FeaturesSection/FeaturesSection.tsx +++ b/src/components/FeaturesSection/FeaturesSection.tsx @@ -7,10 +7,12 @@ import { type FC } from 'react'; import FeatureItem from '@site/src/components/FeatureItem'; import Section from '@site/src/components/Section'; +// constants +import { DEFAULT_GAP } from '@site/src/constants'; + // types import type { IDefaultSectionProps } from '@site/src/types'; import type { IProps as IFeatureItemProps } from '@site/src/components/FeatureItem'; -import { DEFAULT_GAP } from '@site/src/constants'; const FeaturesSection: FC = ({ variant }) => { const { colorMode } = useColorMode(); diff --git a/static/images/screens/android_screen-dark.png b/static/images/screens/android_screen-dark.png new file mode 100644 index 0000000..416763c Binary files /dev/null and b/static/images/screens/android_screen-dark.png differ diff --git a/static/images/screens/android_screen-light.png b/static/images/screens/android_screen-light.png new file mode 100644 index 0000000..025e4fa Binary files /dev/null and b/static/images/screens/android_screen-light.png differ diff --git a/static/images/screens/ios_screen-dark.png b/static/images/screens/ios_screen-dark.png index 679a0f2..7df004a 100644 Binary files a/static/images/screens/ios_screen-dark.png and b/static/images/screens/ios_screen-dark.png differ diff --git a/static/images/screens/ios_screen-light.png b/static/images/screens/ios_screen-light.png index 93d2667..b4d19ce 100644 Binary files a/static/images/screens/ios_screen-light.png and b/static/images/screens/ios_screen-light.png differ