diff --git a/homepage/components/organisms/BoostHubSection.tsx b/homepage/components/organisms/BoostHubSection.tsx index 32ce7680c0..e24e6c83b9 100644 --- a/homepage/components/organisms/BoostHubSection.tsx +++ b/homepage/components/organisms/BoostHubSection.tsx @@ -9,7 +9,7 @@ import { useTranslation } from 'react-i18next' import ButtonLink from '../atoms/ButtonLink' const Container = styled.div` - max-width: 72em; + max-width: 70em; margin: 0 auto; ${space} ` @@ -19,30 +19,28 @@ const BoostHubTitle = styled.div` ` const BoostHubDescription = styled.div` - display: flex; - margin-top: 30px; - margin-bottom: 40px; + margin-bottom: 20px; + text-align: center; p { - margin-top: 0; - margin-bottom: 30px; + margin: 5px 0; } -` - -const FeatureList = styled.ul` - li { - font-size: 20px; - + li { - margin-top: 10px; - } + a { + margin-top: 40px; } +` +const FeatureList = styled.div` span { - display: inline-block; - margin-right: 5px; + display: block; + margin-bottom: 10px; font-weight: bold; } + + @media only screen and (min-width: 1024px) { + margin-bottom: 30px; + } ` const BoostHubImage = styled.img` @@ -54,8 +52,8 @@ const BoostHubSection = () => { return (
- - + + @@ -68,8 +66,9 @@ const BoostHubSection = () => { - -

{t('boostHub.description')}

+ +

{t('boostHub.description1')}

+

{t('boostHub.description2')}

{ {t('common.boostHub')}
- - -
  • - {t('boostHub.feature1Name')}: - {t('boostHub.feature1Detail')} -
  • -
  • - {t('boostHub.feature2Name')}: - {t('boostHub.feature2Detail')} -
  • -
  • - {t('boostHub.feature3Name')}: - {t('boostHub.feature3Detail')} -
  • -
  • - {t('boostHub.feature4Name')}: - {t('boostHub.feature4Detail')} -
  • -
    -
    - + + + + + + {t('boostHub.feature1Name')} + {t('boostHub.feature1Detail')} + + + {t('boostHub.feature2Name')} + {t('boostHub.feature2Detail')} + + + {t('boostHub.feature3Name')} + {t('boostHub.feature3Detail')} + + +
    diff --git a/homepage/components/organisms/CommunitySection.tsx b/homepage/components/organisms/CommunitySection.tsx index bbd387e045..dc3728f7e8 100644 --- a/homepage/components/organisms/CommunitySection.tsx +++ b/homepage/components/organisms/CommunitySection.tsx @@ -10,6 +10,12 @@ const Container = styled.div` max-width: 60em; margin: 0 auto; ${space} + + p { + max-width: 600px; + margin-left: auto; + margin-right: auto; + } ` const CommunityLink = styled.a` diff --git a/homepage/components/organisms/DownloadSection.tsx b/homepage/components/organisms/DownloadSection.tsx index 8981ab4f46..1eaa5bc348 100644 --- a/homepage/components/organisms/DownloadSection.tsx +++ b/homepage/components/organisms/DownloadSection.tsx @@ -11,6 +11,8 @@ import { mdiOpenInNew, } from '@mdi/js' import FlexBox from '../atoms/FlexBox' +import Row from '../atoms/Row' +import Column from '../atoms/Column' import { macDmgDownloadUrl, macZipDownloadUrl, @@ -28,7 +30,7 @@ import { sendGAEvent, queueNavigateToGA } from '../../lib/analytics' import { useTranslation } from 'react-i18next' const Container = styled.div` - max-width: 60em; + max-width: 70em; margin: 0 auto; ${space} ` @@ -47,140 +49,154 @@ const DownloadSection = () => { return (
    - - - 📦 {t('common.downloadApp')} - - -
  • - - macOS - - - - - .dmg (macOS) - - - .zip (macOS) - - -
  • -
  • - - Windows - - - - .exe (NSIS installer) (Windows) - - -
  • -
  • - - Linux - - - - .AppImage (Linux) - - - .deb (Linux) - - -
  • -
  • - - {t('common.mobileApp')} - - - - - - - - - -
  • -
  • - - {t('download.legacyApp')} - - - - {t('download.legacyAppDescription')} - - - - { - event.preventDefault() - sendGAEvent('download-old') - queueNavigateToGA( - 'https://github.com/BoostIO/boost-releases/releases/latest', - true - ) - }} - > - {t('download.legacyDownloadLinks')} - - { - event.preventDefault() - sendGAEvent('repository-old') - queueNavigateToGA( - 'https://github.com/BoostIO/BoostNote', - true - ) - }} - > - {t('download.legacyRepository')} - - -
  • -
    + + + + 📦 {t('common.downloadApp')} + + + + +
  • + + macOS + + + + + .dmg (macOS) + + + .zip (macOS) + + +
  • +
  • + + Windows + + + + .exe (NSIS) (Windows) + + +
  • +
  • + + Linux + + + + .AppImage (Linux) + + + .deb (Linux) + + +
  • +
    +
    + + +
  • + + {t('common.mobileApp')} + + + + + + + + + +
  • +
  • + + {t('download.legacyApp')} + + + {t('download.legacyAppDescription')} + + + { + event.preventDefault() + sendGAEvent('download-old') + queueNavigateToGA( + 'https://github.com/BoostIO/boost-releases/releases/latest', + true + ) + }} + > + {' '} + {t('download.legacyDownloadLinks')} + + { + event.preventDefault() + sendGAEvent('repository-old') + queueNavigateToGA( + 'https://github.com/BoostIO/BoostNote', + true + ) + }} + > + {' '} + {t('download.legacyRepository')} + + +
  • +
    +
    +
    +
    ) diff --git a/homepage/components/organisms/FeaturesSection.tsx b/homepage/components/organisms/FeaturesSection.tsx index 23ff15bbc6..2c59c07271 100644 --- a/homepage/components/organisms/FeaturesSection.tsx +++ b/homepage/components/organisms/FeaturesSection.tsx @@ -108,7 +108,7 @@ const FeaturesSection = () => { diff --git a/homepage/components/organisms/Footer.tsx b/homepage/components/organisms/Footer.tsx index 5366c5a4de..f47ed9aef5 100644 --- a/homepage/components/organisms/Footer.tsx +++ b/homepage/components/organisms/Footer.tsx @@ -48,6 +48,9 @@ const Footer = () => { {t('footer.pressKit')} +
  • + {t('footer.backers')} +
  • {t('footer.userTerms')}
  • diff --git a/homepage/components/organisms/Header.tsx b/homepage/components/organisms/Header.tsx index 86e9f9b4e1..a01793a262 100644 --- a/homepage/components/organisms/Header.tsx +++ b/homepage/components/organisms/Header.tsx @@ -15,7 +15,7 @@ import { FlexProps, } from 'styled-system' import Icon from '../atoms/Icon' -import { mdiDownload, mdiOpenInApp } from '@mdi/js' +import { mdiDownload, mdiOpenInApp, mdiChevronDown } from '@mdi/js' import { sendGAEvent, queueNavigateToGA } from '../../lib/analytics' const HeaderAlert = styled.div` @@ -29,6 +29,9 @@ const HeaderAlert = styled.div` padding: 15px 0; text-align: center; } + a { + color: #fff; + } span { font-weight: bold; } @@ -41,6 +44,7 @@ const HeaderAlert = styled.div` const HeaderContainer = styled.header` position: sticky; top: 0; + z-index: 1; background-color: rgba(255, 255, 255, 0.9); ` @@ -105,6 +109,57 @@ const HeaderLink = styled.a` } ` +const HeaderDropdown = styled.div` + position: relative; + + &:hover { + cursor: pointer; + + ul { + display: block; + } + } + + span { + display: inline-block; + line-height: 45px; + font-weight: bold; + + svg { + margin-left: ${({ theme }) => theme.space[1]}px; + vertical-align: middle; + } + } + + ul { + display: none; + position: absolute; + top: 40px; + z-index: 1; + width: 150px; + background-color: #fff; + box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.16); + border-radius: 3px; + } + + a { + display: flex; + align-items: center; + padding: ${({ theme }) => theme.space[1]}px + ${({ theme }) => theme.space[2]}px; + color: ${({ theme }) => theme.colors.black} !important; + + &:hover { + background-color: #f0f0f0; + } + } + + img { + margin-right: ${({ theme }) => theme.space[1]}px; + height: 21px; + } +` + const HeaderRightList = styled.ul` ${layout} list-style: none; @@ -157,8 +212,14 @@ const Header = () => {

    - Boost Hub, the workspace app for developer teams, has - arrived! + + Boost Hub, the workspace app for developer teams, has + arrived! +

    @@ -173,16 +234,74 @@ const Header = () => { {t('header.forTeams')} -
  • - -
  • + + + {t('header.community')} + + + +
  • diff --git a/homepage/locales/de.ts b/homepage/locales/de.ts index 94d8d632f6..89360c3556 100644 --- a/homepage/locales/de.ts +++ b/homepage/locales/de.ts @@ -12,24 +12,27 @@ export default { }, header: { forTeams: 'Für Teams', + community: 'Community', }, hero: { title: 'Boost Happiness, Productivity and Creativity.', subtitle: - 'Eine intuitive und stylische Markdown Notiz-App für Entwickler. Vollständig Open-Source.', + "Boost Note is an intuitive and stylish markdown note app. It's fully open-source, and used by 1 million developers!", }, boostHub: { - // title: 'Do you know Boost Hub?', - // description: - // "We've developed this workspace app as another project, and we focused on the features to make it customizable and easy to optimize for every developer team.", - // feature1Name: 'Custom Blocks', - // feature1Detail: 'Display and interact the third party info', - // feature2Name: 'Real-time Coauthoring', - // feature2Detail: 'Edit documents with team members', - // feature3Name: 'Versatile Markdown', - // feature3Detail: 'Supporting LaTex, PlantUML, etc.', - // feature4Name: 'Keyboard Shortcuts', - // feature4Detail: 'More than 20 shortcuts are prepared', + // title: 'Looking for Team Version?', + // description1: 'Boost Hub is more than just a markdown editor or a wiki.', + // description2: + // 'You can collaborate with your team members in real-time, from anywhere.', + // feature1Name: 'Real-time Coauthoring', + // feature1Detail: + // 'Write and edit documents as a team and sharing your knowledge and ideas in real-time. No one will be left behind.', + // feature2Name: 'Create Diagrams Like a Pro', + // feature2Detail: + // 'Supports Charts.js, Mermaid, andPlantUML, which means you can put diagrams in your document.', + // feature3Name: 'Beautiful Mathematical Script', + // feature3Detail: + // 'For clean representation of maths equations it is time to use LaTex in the Boost Hub editor.', }, features: { title: 'Funktionen', @@ -83,6 +86,7 @@ export default { footer: { mission: 'Mission', pressKit: 'Presseunterlagen', + backers: 'Backers', userTerms: 'Nutzungsbedingungen', privacyPolicy: 'Datenschutzerklärung', }, diff --git a/homepage/locales/en.ts b/homepage/locales/en.ts index f9566e99c4..3fb63c1db6 100644 --- a/homepage/locales/en.ts +++ b/homepage/locales/en.ts @@ -12,24 +12,27 @@ export default { }, header: { forTeams: 'For Teams', + community: 'Community', }, hero: { title: 'Boost Happiness, Productivity and Creativity.', subtitle: - "An intuitive and stylish markdown note app for developers. It's fully open-source.", + "Boost Note is an intuitive and stylish markdown note app. It's fully open-source, and used by 1 million developers!", }, boostHub: { - title: 'Do you know Boost Hub?', - description: - "We've developed this workspace app as another project, and we focused on the features to make it customizable and easy to optimize for every developer team.", - feature1Name: 'Custom Blocks', - feature1Detail: 'Display and interact the third party info', - feature2Name: 'Real-time Coauthoring', - feature2Detail: 'Edit documents with team members', - feature3Name: 'Versatile Markdown', - feature3Detail: 'Supporting LaTex, PlantUML, etc.', - feature4Name: 'Keyboard Shortcuts', - feature4Detail: 'More than 20 shortcuts are prepared', + title: 'Looking for Team Version?', + description1: 'Boost Hub is more than just a markdown editor or a wiki.', + description2: + 'You can collaborate with your team members in real-time, from anywhere.', + feature1Name: 'Real-time Coauthoring', + feature1Detail: + 'Write and edit documents as a team and sharing your knowledge and ideas in real-time. No one will be left behind.', + feature2Name: 'Create Diagrams Like a Pro', + feature2Detail: + 'Supports Charts.js, Mermaid, andPlantUML, which means you can put diagrams in your document.', + feature3Name: 'Beautiful Mathematical Script', + feature3Detail: + 'For clean representation of maths equations it is time to use LaTex in the Boost Hub editor.', }, features: { title: 'Features', @@ -83,6 +86,7 @@ export default { footer: { mission: 'Mission', pressKit: 'Press Kit', + backers: 'Backers', userTerms: 'User Terms', privacyPolicy: 'Privacy Policy', }, diff --git a/homepage/locales/es.ts b/homepage/locales/es.ts index df72875ccb..7cae639c12 100644 --- a/homepage/locales/es.ts +++ b/homepage/locales/es.ts @@ -16,20 +16,22 @@ export default { hero: { // title: 'Boost Happiness, Productivity and Creativity.', // subtitle: - // "An intuitive and stylish markdown note app for developers. It's fully open-source.", + // "Boost Note is an intuitive and stylish markdown note app. It's fully open-source, and used by 1 million developers!", }, boostHub: { - // title: 'Do you know Boost Hub?', - // description: - // "We've developed this workspace app as another project, and we focused on the features to make it customizable and easy to optimize for every developer team.", - // feature1Name: 'Custom Blocks', - // feature1Detail: 'Display and interact the third party info', - // feature2Name: 'Real-time Coauthoring', - // feature2Detail: 'Edit documents with team members', - // feature3Name: 'Versatile Markdown', - // feature3Detail: 'Supporting LaTex, PlantUML, etc.', - // feature4Name: 'Keyboard Shortcuts', - // feature4Detail: 'More than 20 shortcuts are prepared', + // title: 'Looking for Team Version?', + // description1: 'Boost Hub is more than just a markdown editor or a wiki.', + // description2: + // 'You can collaborate with your team members in real-time, from anywhere.', + // feature1Name: 'Real-time Coauthoring', + // feature1Detail: + // 'Write and edit documents as a team and sharing your knowledge and ideas in real-time. No one will be left behind.', + // feature2Name: 'Create Diagrams Like a Pro', + // feature2Detail: + // 'Supports Charts.js, Mermaid, andPlantUML, which means you can put diagrams in your document.', + // feature3Name: 'Beautiful Mathematical Script', + // feature3Detail: + // 'For clean representation of maths equations it is time to use LaTex in the Boost Hub editor.', }, features: { // title: 'Features', @@ -83,6 +85,7 @@ export default { footer: { // mission: 'Mission', // pressKit: 'Press Kit', + // backers: 'Backers', // userTerms: 'User Terms', // privacyPolicy: 'Privacy Policy', }, diff --git a/homepage/locales/fr.ts b/homepage/locales/fr.ts index a38c58feec..9670146392 100644 --- a/homepage/locales/fr.ts +++ b/homepage/locales/fr.ts @@ -12,24 +12,27 @@ export default { }, header: { forTeams: 'Pour les équipes', + community: 'Community', }, hero: { title: 'Stimuler le bonheur, la productivité et la créativité.', subtitle: - 'Une application de prise de notes Markdown intuitive et élégante pour les développeurs, le tout entièrement open-source.', + "Boost Note is an intuitive and stylish markdown note app. It's fully open-source, and used by 1 million developers!", }, boostHub: { - // title: 'Do you know Boost Hub?', - // description: - // "We've developed this workspace app as another project, and we focused on the features to make it customizable and easy to optimize for every developer team.", - // feature1Name: 'Custom Blocks', - // feature1Detail: 'Display and interact the third party info', - // feature2Name: 'Real-time Coauthoring', - // feature2Detail: 'Edit documents with team members', - // feature3Name: 'Versatile Markdown', - // feature3Detail: 'Supporting LaTex, PlantUML, etc.', - // feature4Name: 'Keyboard Shortcuts', - // feature4Detail: 'More than 20 shortcuts are prepared', + // title: 'Looking for Team Version?', + // description1: 'Boost Hub is more than just a markdown editor or a wiki.', + // description2: + // 'You can collaborate with your team members in real-time, from anywhere.', + // feature1Name: 'Real-time Coauthoring', + // feature1Detail: + // 'Write and edit documents as a team and sharing your knowledge and ideas in real-time. No one will be left behind.', + // feature2Name: 'Create Diagrams Like a Pro', + // feature2Detail: + // 'Supports Charts.js, Mermaid, andPlantUML, which means you can put diagrams in your document.', + // feature3Name: 'Beautiful Mathematical Script', + // feature3Detail: + // 'For clean representation of maths equations it is time to use LaTex in the Boost Hub editor.', }, features: { title: 'Fonctionnalités', @@ -83,6 +86,7 @@ export default { footer: { mission: 'Mission', pressKit: 'Kit de presse', + backers: 'Backers', userTerms: "Conditions d'utilisation", privacyPolicy: 'Politique de confidentialité', }, diff --git a/homepage/locales/ja.ts b/homepage/locales/ja.ts index e51a0673bc..1d4564ff78 100644 --- a/homepage/locales/ja.ts +++ b/homepage/locales/ja.ts @@ -12,24 +12,27 @@ export default { }, header: { forTeams: 'チーム版', + community: 'コミュニティ', }, hero: { // title: 'Boost Happiness, Productivity and Creativity.', // subtitle: - // "An intuitive and stylish markdown note app for developers. It's fully open-source.", + // "Boost Note is an intuitive and stylish markdown note app. It's fully open-source, and used by 1 million developers!", }, boostHub: { - // title: 'Do you know Boost Hub?', - // description: - // "We've developed this workspace app as another project, and we focused on the features to make it customizable and easy to optimize for every developer team.", - // feature1Name: 'Custom Blocks', - // feature1Detail: 'Display and interact the third party info', - // feature2Name: 'Real-time Coauthoring', - // feature2Detail: 'Edit documents with team members', - // feature3Name: 'Versatile Markdown', - // feature3Detail: 'Supporting LaTex, PlantUML, etc.', - // feature4Name: 'Keyboard Shortcuts', - // feature4Detail: 'More than 20 shortcuts are prepared', + // title: 'Looking for Team Version?', + // description1: 'Boost Hub is more than just a markdown editor or a wiki.', + // description2: + // 'You can collaborate with your team members in real-time, from anywhere.', + // feature1Name: 'Real-time Coauthoring', + // feature1Detail: + // 'Write and edit documents as a team and sharing your knowledge and ideas in real-time. No one will be left behind.', + // feature2Name: 'Create Diagrams Like a Pro', + // feature2Detail: + // 'Supports Charts.js, Mermaid, andPlantUML, which means you can put diagrams in your document.', + // feature3Name: 'Beautiful Mathematical Script', + // feature3Detail: + // 'For clean representation of maths equations it is time to use LaTex in the Boost Hub editor.', }, features: { // title: 'Features', @@ -76,6 +79,7 @@ export default { footer: { // mission: 'Mission', // pressKit: 'Press Kit', + // backers: 'Backers', // userTerms: 'User Terms', // privacyPolicy: 'Privacy Policy', }, diff --git a/homepage/locales/ko.ts b/homepage/locales/ko.ts index 91309ae164..51c22f4d9f 100644 --- a/homepage/locales/ko.ts +++ b/homepage/locales/ko.ts @@ -12,24 +12,27 @@ export default { }, header: { forTeams: '팀', + community: 'Community', }, hero: { // title: 'Boost Happiness, Productivity and Creativity.', // subtitle: - // "An intuitive and stylish markdown note app for developers. It's fully open-source.", + // "Boost Note is an intuitive and stylish markdown note app. It's fully open-source, and used by 1 million developers!", }, boostHub: { - // title: 'Do you know Boost Hub?', - // description: - // "We've developed this workspace app as another project, and we focused on the features to make it customizable and easy to optimize for every developer team.", - // feature1Name: 'Custom Blocks', - // feature1Detail: 'Display and interact the third party info', - // feature2Name: 'Real-time Coauthoring', - // feature2Detail: 'Edit documents with team members', - // feature3Name: 'Versatile Markdown', - // feature3Detail: 'Supporting LaTex, PlantUML, etc.', - // feature4Name: 'Keyboard Shortcuts', - // feature4Detail: 'More than 20 shortcuts are prepared', + // title: 'Looking for Team Version?', + // description1: 'Boost Hub is more than just a markdown editor or a wiki.', + // description2: + // 'You can collaborate with your team members in real-time, from anywhere.', + // feature1Name: 'Real-time Coauthoring', + // feature1Detail: + // 'Write and edit documents as a team and sharing your knowledge and ideas in real-time. No one will be left behind.', + // feature2Name: 'Create Diagrams Like a Pro', + // feature2Detail: + // 'Supports Charts.js, Mermaid, andPlantUML, which means you can put diagrams in your document.', + // feature3Name: 'Beautiful Mathematical Script', + // feature3Detail: + // 'For clean representation of maths equations it is time to use LaTex in the Boost Hub editor.', }, features: { // title: 'Features', @@ -76,6 +79,7 @@ export default { footer: { // mission: 'Mission', // pressKit: 'Press Kit', + // backers: 'Backers', // userTerms: 'User Terms', // privacyPolicy: 'Privacy Policy', }, diff --git a/homepage/locales/nl.ts b/homepage/locales/nl.ts index 4e9a3f7f45..1a3f18266c 100644 --- a/homepage/locales/nl.ts +++ b/homepage/locales/nl.ts @@ -12,16 +12,17 @@ export default { }, header: { forTeams: 'Voor Teams', + community: 'Community', }, hero: { title: 'Boost Geluk, Productiviteit en Creativiteit.', subtitle: - "Een intuïtieve en stijlvolle markdown notitie-app voor ontwikkelaars. Volledig open-source.", + 'Een intuïtieve en stijlvolle markdown notitie-app voor ontwikkelaars. Volledig open-source.', }, boostHub: { title: 'Kent u Boost Hub al?', description: - "We hebben deze samenwerkingsapp ontwikkeld als een apart project, en we hebben ons hierbij gericht op functies die zorgen voor een geheel dat makkelijk aanpasbaar en eenvoudig te optimaliseren is voor elk team van ontwikkelaars.", + 'We hebben deze samenwerkingsapp ontwikkeld als een apart project, en we hebben ons hierbij gericht op functies die zorgen voor een geheel dat makkelijk aanpasbaar en eenvoudig te optimaliseren is voor elk team van ontwikkelaars.', feature1Name: 'Custom blokken', feature1Detail: 'Weergave van- en interactie met externe informatie', feature2Name: 'Real-time Samenwerken', @@ -71,14 +72,14 @@ export default { download: { legacyApp: 'Legacy App', legacyAppDescription: - "We blijven de oude app onderhouden totdat de huidige Boost Note.next het merendeel van de functies van de oude app ondersteunt, zoals lokale opslag en markdown-extensies. Push uzelf dus niet te hard om naar de nieuwe app te migreren.", + 'We blijven de oude app onderhouden totdat de huidige Boost Note.next het merendeel van de functies van de oude app ondersteunt, zoals lokale opslag en markdown-extensies. Push uzelf dus niet te hard om naar de nieuwe app te migreren.', legacyDownloadLinks: 'Legacy Downloadlinks', legacyRepository: 'Legacy Repository', }, community: { title: 'Word onderdeel van onze community', description: - "Onze gemeenschap van developers ondersteunt Boostnote. Boostnote geniet van aanzienlijke populariteit op GitHub en wordt door vele programmeurs onderhouden. Onze community verwelkomt iedereen. Doe mee!", + 'Onze gemeenschap van developers ondersteunt Boostnote. Boostnote geniet van aanzienlijke populariteit op GitHub en wordt door vele programmeurs onderhouden. Onze community verwelkomt iedereen. Doe mee!', }, footer: { mission: 'Missie', diff --git a/homepage/locales/pt.ts b/homepage/locales/pt.ts index f32d69ae19..40511da09e 100644 --- a/homepage/locales/pt.ts +++ b/homepage/locales/pt.ts @@ -12,24 +12,27 @@ export default { }, header: { forTeams: 'Para Equipes', + community: 'Community', }, hero: { // title: 'Boost Happiness, Productivity and Creativity.', // subtitle: - // "An intuitive and stylish markdown note app for developers. It's fully open-source.", + // "Boost Note is an intuitive and stylish markdown note app. It's fully open-source, and used by 1 million developers!", }, boostHub: { - // title: 'Do you know Boost Hub?', - // description: - // "We've developed this workspace app as another project, and we focused on the features to make it customizable and easy to optimize for every developer team.", - // feature1Name: 'Custom Blocks', - // feature1Detail: 'Display and interact the third party info', - // feature2Name: 'Real-time Coauthoring', - // feature2Detail: 'Edit documents with team members', - // feature3Name: 'Versatile Markdown', - // feature3Detail: 'Supporting LaTex, PlantUML, etc.', - // feature4Name: 'Keyboard Shortcuts', - // feature4Detail: 'More than 20 shortcuts are prepared', + // title: 'Looking for Team Version?', + // description1: 'Boost Hub is more than just a markdown editor or a wiki.', + // description2: + // 'You can collaborate with your team members in real-time, from anywhere.', + // feature1Name: 'Real-time Coauthoring', + // feature1Detail: + // 'Write and edit documents as a team and sharing your knowledge and ideas in real-time. No one will be left behind.', + // feature2Name: 'Create Diagrams Like a Pro', + // feature2Detail: + // 'Supports Charts.js, Mermaid, andPlantUML, which means you can put diagrams in your document.', + // feature3Name: 'Beautiful Mathematical Script', + // feature3Detail: + // 'For clean representation of maths equations it is time to use LaTex in the Boost Hub editor.', }, features: { // title: 'Features', @@ -76,6 +79,7 @@ export default { footer: { // mission: 'Mission', // pressKit: 'Press Kit', + // backers: 'Backers', // userTerms: 'User Terms', // privacyPolicy: 'Privacy Policy', }, diff --git a/homepage/locales/ru.ts b/homepage/locales/ru.ts index 7ec447d587..6e53ab676b 100644 --- a/homepage/locales/ru.ts +++ b/homepage/locales/ru.ts @@ -12,24 +12,27 @@ export default { }, header: { forTeams: 'Для комманды', + community: 'Community', }, hero: { // title: 'Boost Happiness, Productivity and Creativity.', // subtitle: - // "An intuitive and stylish markdown note app for developers. It's fully open-source.", + // "Boost Note is an intuitive and stylish markdown note app. It's fully open-source, and used by 1 million developers!", }, boostHub: { - // title: 'Do you know Boost Hub?', - // description: - // "We've developed this workspace app as another project, and we focused on the features to make it customizable and easy to optimize for every developer team.", - // feature1Name: 'Custom Blocks', - // feature1Detail: 'Display and interact the third party info', - // feature2Name: 'Real-time Coauthoring', - // feature2Detail: 'Edit documents with team members', - // feature3Name: 'Versatile Markdown', - // feature3Detail: 'Supporting LaTex, PlantUML, etc.', - // feature4Name: 'Keyboard Shortcuts', - // feature4Detail: 'More than 20 shortcuts are prepared', + // title: 'Looking for Team Version?', + // description1: 'Boost Hub is more than just a markdown editor or a wiki.', + // description2: + // 'You can collaborate with your team members in real-time, from anywhere.', + // feature1Name: 'Real-time Coauthoring', + // feature1Detail: + // 'Write and edit documents as a team and sharing your knowledge and ideas in real-time. No one will be left behind.', + // feature2Name: 'Create Diagrams Like a Pro', + // feature2Detail: + // 'Supports Charts.js, Mermaid, andPlantUML, which means you can put diagrams in your document.', + // feature3Name: 'Beautiful Mathematical Script', + // feature3Detail: + // 'For clean representation of maths equations it is time to use LaTex in the Boost Hub editor.', }, features: { // title: 'Features', @@ -77,6 +80,7 @@ export default { footer: { // mission: 'Mission', // pressKit: 'Press Kit', + // backers: 'Backers', // userTerms: 'User Terms', // privacyPolicy: 'Privacy Policy', }, diff --git a/homepage/locales/vn.ts b/homepage/locales/vn.ts index 305277bebf..a6f385877f 100644 --- a/homepage/locales/vn.ts +++ b/homepage/locales/vn.ts @@ -12,24 +12,27 @@ export default { }, header: { forTeams: 'Dành cho nhóm', + community: 'Community', }, hero: { title: 'Thêm vui vẻ, năng suất và sáng tạo.', subtitle: - 'Một ứng dụng ghi chú markdown hiệu quả cho lập trình viên và hoàn toàn open-source.', + "Boost Note is an intuitive and stylish markdown note app. It's fully open-source, and used by 1 million developers!", }, boostHub: { - // title: 'Do you know Boost Hub?', - // description: - // "We've developed this workspace app as another project, and we focused on the features to make it customizable and easy to optimize for every developer team.", - // feature1Name: 'Custom Blocks', - // feature1Detail: 'Display and interact the third party info', - // feature2Name: 'Real-time Coauthoring', - // feature2Detail: 'Edit documents with team members', - // feature3Name: 'Versatile Markdown', - // feature3Detail: 'Supporting LaTex, PlantUML, etc.', - // feature4Name: 'Keyboard Shortcuts', - // feature4Detail: 'More than 20 shortcuts are prepared', + // title: 'Looking for Team Version?', + // description1: 'Boost Hub is more than just a markdown editor or a wiki.', + // description2: + // 'You can collaborate with your team members in real-time, from anywhere.', + // feature1Name: 'Real-time Coauthoring', + // feature1Detail: + // 'Write and edit documents as a team and sharing your knowledge and ideas in real-time. No one will be left behind.', + // feature2Name: 'Create Diagrams Like a Pro', + // feature2Detail: + // 'Supports Charts.js, Mermaid, andPlantUML, which means you can put diagrams in your document.', + // feature3Name: 'Beautiful Mathematical Script', + // feature3Detail: + // 'For clean representation of maths equations it is time to use LaTex in the Boost Hub editor.', }, features: { title: 'Các chức năng', @@ -83,6 +86,7 @@ export default { footer: { mission: 'Sứ mệnh', pressKit: 'Press Kit', + backers: 'Backers', userTerms: 'Điều khoản người dùng', privacyPolicy: 'Quy định về quyền riêng tư', }, diff --git a/homepage/locales/zh.ts b/homepage/locales/zh.ts index f63164e35c..e8712a5634 100644 --- a/homepage/locales/zh.ts +++ b/homepage/locales/zh.ts @@ -12,24 +12,27 @@ export default { }, header: { forTeams: '团队版', + community: 'Community', }, hero: { // title: 'Boost Happiness, Productivity and Creativity.', // subtitle: - // "An intuitive and stylish markdown note app for developers. It's fully open-source.", + // "Boost Note is an intuitive and stylish markdown note app. It's fully open-source, and used by 1 million developers!", }, boostHub: { - // title: 'Do you know Boost Hub?', - // description: - // "We've developed this workspace app as another project, and we focused on the features to make it customizable and easy to optimize for every developer team.", - // feature1Name: 'Custom Blocks', - // feature1Detail: 'Display and interact the third party info', - // feature2Name: 'Real-time Coauthoring', - // feature2Detail: 'Edit documents with team members', - // feature3Name: 'Versatile Markdown', - // feature3Detail: 'Supporting LaTex, PlantUML, etc.', - // feature4Name: 'Keyboard Shortcuts', - // feature4Detail: 'More than 20 shortcuts are prepared', + // title: 'Looking for Team Version?', + // description1: 'Boost Hub is more than just a markdown editor or a wiki.', + // description2: + // 'You can collaborate with your team members in real-time, from anywhere.', + // feature1Name: 'Real-time Coauthoring', + // feature1Detail: + // 'Write and edit documents as a team and sharing your knowledge and ideas in real-time. No one will be left behind.', + // feature2Name: 'Create Diagrams Like a Pro', + // feature2Detail: + // 'Supports Charts.js, Mermaid, andPlantUML, which means you can put diagrams in your document.', + // feature3Name: 'Beautiful Mathematical Script', + // feature3Detail: + // 'For clean representation of maths equations it is time to use LaTex in the Boost Hub editor.', }, features: { // title: 'Features', @@ -74,6 +77,7 @@ export default { footer: { // mission: 'Mission', // pressKit: 'Press Kit', + // backers: 'Backers', // userTerms: 'User Terms', // privacyPolicy: 'Privacy Policy', }, diff --git a/homepage/pages/index.tsx b/homepage/pages/index.tsx index 866b5670d1..da499c63d2 100644 --- a/homepage/pages/index.tsx +++ b/homepage/pages/index.tsx @@ -6,7 +6,6 @@ import PricingPlansSection from '../components/organisms/PricingPlansSection' import BoostHubSection from '../components/organisms/BoostHubSection' import DownloadSection from '../components/organisms/DownloadSection' import CommunitySection from '../components/organisms/CommunitySection' -import KickstarterCampaignSection from '../components/organisms/KickstarterCampaignSection' const HomePage = () => { return ( @@ -17,7 +16,6 @@ const HomePage = () => { - ) } diff --git a/homepage/public/static/boosthub.png b/homepage/public/static/boosthub.png new file mode 100644 index 0000000000..d7725cc5fa Binary files /dev/null and b/homepage/public/static/boosthub.png differ diff --git a/homepage/public/static/boosthub.svg b/homepage/public/static/boosthub.svg deleted file mode 100644 index 7ecd105d0d..0000000000 --- a/homepage/public/static/boosthub.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - coauthoring-lp copy 2 - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/readme.md b/readme.md index fb7ac627d3..318c46475d 100644 --- a/readme.md +++ b/readme.md @@ -27,7 +27,7 @@ BoostNote.next is a renewal of the [Boostnote app](https://github.com/BoostIO/Bo ## Roadmap -[Boost Note Roadmap 2020](https://medium.com/boostnote/boost-note-roadmap-2020-9f06a642f5f1) +[Boost Note Roadmap 2020](https://github.com/BoostIO/BoostNote.next/projects/3) ## Authors & Maintainers