diff --git a/blog/2023-12-21-introducing-kibisis/index.mdx b/blog/2023-12-21-introducing-kibisis/index.mdx index 51f6aef..11c5fa4 100644 --- a/blog/2023-12-21-introducing-kibisis/index.mdx +++ b/blog/2023-12-21-introducing-kibisis/index.mdx @@ -13,8 +13,8 @@ import BlogScreenshotImage from '@site/src/components/BlogScreenshotImage'; import { CHROME_STORE_LINK } from '@site/src/constants'; -import sendAssetsDarkImage from './send_assets-dark.png'; -import sendAssetsLightImage from './send_assets-light.png'; +import sendAssetsDarkImage from '@site/static/images/send_assets_screen-dark.png'; +import sendAssetsLightImage from '@site/static/images/send_assets_screen-light.png'; import switchNetworksDarkImage from './switch_networks-dark.png'; import switchNetworksLightImage from './switch_networks-light.png'; import viewAssetsDarkImage from './view_assets-dark.png'; diff --git a/blog/2023-12-21-introducing-kibisis/send_assets-light.png b/blog/2023-12-21-introducing-kibisis/send_assets-light.png deleted file mode 100644 index d18646a..0000000 Binary files a/blog/2023-12-21-introducing-kibisis/send_assets-light.png and /dev/null differ diff --git a/blog/2023-12-27-1-8-0-new-release/add_arc200_asset-light.png b/blog/2023-12-27-1-8-0-new-release/add_arc200_asset-light.png deleted file mode 100644 index d770264..0000000 Binary files a/blog/2023-12-27-1-8-0-new-release/add_arc200_asset-light.png and /dev/null differ diff --git a/blog/2023-12-27-1-8-0-new-release/index.mdx b/blog/2023-12-27-1-8-0-new-release/index.mdx index 7259259..4a8df4f 100644 --- a/blog/2023-12-27-1-8-0-new-release/index.mdx +++ b/blog/2023-12-27-1-8-0-new-release/index.mdx @@ -13,8 +13,8 @@ import BlogScreenshotImage from '@site/src/components/BlogScreenshotImage'; import { AGORA_LABS_LINK, REPORT_A_BUG_LINK, SUGGEST_A_FEATURE_LINK } from '@site/src/constants'; -import addArc200AssetDarkImage from './add_arc200_asset-dark.png'; -import addArc200AssetLightImage from './add_arc200_asset-light.png'; +import addArc200AssetDarkImage from '@site/static/images/add_arc200_asset_screen-dark.png'; +import addArc200AssetLightImage from '@site/static/images/add_arc200_asset_screen-light.png'; import arc200SupportDarkImage from './arc200_support-dark.png'; import arc200SupportLightImage from './arc200_support-light.png'; diff --git a/docusaurus.config.js b/docusaurus.config.js index 9737e95..dfc5e8f 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -115,14 +115,14 @@ const config = { // right { items: [ - { - label: 'Features', - href: '/#features', - }, { label: 'Concepts', href: '/#concepts', }, + { + label: 'Features', + href: '/#features', + }, { label: 'Download', href: '/#download', diff --git a/src/components/CenteredImage/CenteredImage.tsx b/src/components/CenteredImage/CenteredImage.tsx index 2452725..11d6087 100644 --- a/src/components/CenteredImage/CenteredImage.tsx +++ b/src/components/CenteredImage/CenteredImage.tsx @@ -2,6 +2,7 @@ import React, { FC } from 'react'; // styles import styles from './styles.module.scss'; +import clsx from 'clsx'; interface IProps { label: string; @@ -9,17 +10,21 @@ interface IProps { src: string; } -const CenteredImage: FC = ({ label, maxWidth, src }: IProps) => { +const CenteredImage: FC = ({ + label, + maxWidth = '400px', + src, +}: IProps) => { return ( -
- {label} +
+ > + {label} +
); }; diff --git a/src/components/CenteredImage/styles.module.scss b/src/components/CenteredImage/styles.module.scss index c877831..64f3878 100644 --- a/src/components/CenteredImage/styles.module.scss +++ b/src/components/CenteredImage/styles.module.scss @@ -1,6 +1,16 @@ +@import "../../styles/variables"; + .container { display: flex; - justify-content: center; - padding: 1rem 0; + + &__outer { + padding: 2rem 1rem; + justify-content: center; + width: 100%; + } +} + +.image { + box-shadow: $screen-box-shadow; width: 100%; } diff --git a/src/components/FeaturesSection/FeaturesSection.tsx b/src/components/FeaturesSection/FeaturesSection.tsx index c543e84..f528f0e 100644 --- a/src/components/FeaturesSection/FeaturesSection.tsx +++ b/src/components/FeaturesSection/FeaturesSection.tsx @@ -30,11 +30,21 @@ const FeaturesSection: FC = ({ variant }: IProps) => { alt: 'Asset transfer screen', description: 'Seamlessly transfer any asset to another address.', imageSources: { - dark: '/images/asset_transfer_screen-dark.png', - light: '/images/asset_transfer_screen-light.png', + dark: '/images/send_assets_screen-dark.png', + light: '/images/send_assets_screen-light.png', }, title: 'Asset Transfer', }, + { + alt: 'Add ARC-200 screen', + description: + 'Kibisis not only supports AVM standard assets, it also supports ARC-200. From Kibisis, you can check your balance, transfer and add any ARC-200 asset.', + imageSources: { + dark: '/images/add_arc200_asset_screen-dark.png', + light: '/images/add_arc200_asset_screen-light.png', + }, + title: 'ARC-200 Support', + }, { alt: 'Atomic transaction screen', description: diff --git a/src/components/Header/Header.tsx b/src/components/Header/Header.tsx index c310ed2..0c516d7 100644 --- a/src/components/Header/Header.tsx +++ b/src/components/Header/Header.tsx @@ -14,11 +14,11 @@ const Header: FC = () => { {/*title*/}

- The AVM utility wallet + Your Ultimate AVM Utility Wallet

- A wallet that is not just for DeFi, but also focuses on utility. + An AVM wallet in your browser that goes beyond just DeFi.

diff --git a/blog/2023-12-27-1-8-0-new-release/add_arc200_asset-dark.png b/static/images/add_arc200_asset_screen-dark.png similarity index 100% rename from blog/2023-12-27-1-8-0-new-release/add_arc200_asset-dark.png rename to static/images/add_arc200_asset_screen-dark.png diff --git a/static/images/add_arc200_asset_screen-light.png b/static/images/add_arc200_asset_screen-light.png new file mode 100644 index 0000000..de22f91 Binary files /dev/null and b/static/images/add_arc200_asset_screen-light.png differ diff --git a/blog/2023-12-21-introducing-kibisis/send_assets-dark.png b/static/images/send_assets_screen-dark.png similarity index 100% rename from blog/2023-12-21-introducing-kibisis/send_assets-dark.png rename to static/images/send_assets_screen-dark.png diff --git a/static/images/send_assets_screen-light.png b/static/images/send_assets_screen-light.png new file mode 100644 index 0000000..f255a6b Binary files /dev/null and b/static/images/send_assets_screen-light.png differ