diff --git a/public/images/book/dappsar.png b/public/images/book/dappsar.png new file mode 100644 index 00000000..e7897e60 Binary files /dev/null and b/public/images/book/dappsar.png differ diff --git a/src/components/Navbar/NofTown.jsx b/src/components/Navbar/NofTown.jsx index 3adf5e24..ac50b0ca 100644 --- a/src/components/Navbar/NofTown.jsx +++ b/src/components/Navbar/NofTown.jsx @@ -1,16 +1,21 @@ import React from 'react' +import PropTypes from 'prop-types' import Link from 'next/link' -function NofTown() { +function NofTown({ defaultClassName = 'navbar__center__li__noftown' }) { return ( - + ) } +NofTown.propTypes = { + defaultClassName: PropTypes.string +} + export default NofTown diff --git a/src/components/Navbar/Whitepaper.jsx b/src/components/Navbar/Whitepaper.jsx index 6f76d853..003d4a65 100644 --- a/src/components/Navbar/Whitepaper.jsx +++ b/src/components/Navbar/Whitepaper.jsx @@ -1,20 +1,20 @@ import React from 'react' +import PropTypes from 'prop-types' import Link from 'next/link' import { useTranslation } from 'next-i18next' -function Whitepaper() { +function Whitepaper({ defaultClassName = 'navbar__center__li__whitepaper' }) { const { t } = useTranslation() return ( - - + + ) } +Whitepaper.propTypes = { + defaultClassName: PropTypes.string +} + export default Whitepaper diff --git a/src/sections/Main/Main.jsx b/src/sections/Main/Main.jsx index 7a13b7d4..92ec0fb9 100644 --- a/src/sections/Main/Main.jsx +++ b/src/sections/Main/Main.jsx @@ -210,7 +210,7 @@ const Main = () => {
@@ -226,6 +226,27 @@ const Main = () => {
)
const Page8 = () => (
+
+ {profile.caption}
+ {t ? t('TEAM') : ''}
+
+ {profile.position}
+ {t ? t('FRIENDS') : ''}
@@ -242,7 +263,7 @@ const Main = () => {
)
- const Page9 = () => (
+ const Page10 = () => (
{t ? t('collections') : ''}
+ {t ? t('cards') : ''}
+
+