Skip to content

Commit

Permalink
feat: add android screens (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
kieranroneill authored Oct 16, 2024
1 parent f438766 commit 0bb3137
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/DownloadSection/DownloadSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ const DownloadSection: FC<IDefaultSectionProps> = ({ variant }) => {
<Image
alt="Home screen of the Android app"
maxW="400px"
src={`/images/screens/ios_screen-${colorMode}.png`}
src={`/images/screens/android_screen-${colorMode}.png`}
/>
</Stack>
)}
Expand Down
1 change: 1 addition & 0 deletions src/components/FeatureItem/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
export { default } from './FeatureItem';
export * from './types';
4 changes: 3 additions & 1 deletion src/components/FeaturesSection/FeaturesSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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<IDefaultSectionProps> = ({ variant }) => {
const { colorMode } = useColorMode();
Expand Down
Binary file added static/images/screens/android_screen-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/screens/android_screen-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/images/screens/ios_screen-dark.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified static/images/screens/ios_screen-light.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 0bb3137

Please sign in to comment.