Skip to content

Commit

Permalink
Merge pull request #43 from WatchItDev/feat/section/statistics
Browse files Browse the repository at this point in the history
feat: added open collective to menu, delete discord and fix app url
  • Loading branch information
geolffreym authored Jun 11, 2024
2 parents 0d32cb6 + 4461273 commit b86f069
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions src/i18n/langs/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"LANDING_APP_DOWNLOAD":"Download",
"LANDING_MENU_TWITTER":"Twitter",
"LANDING_MENU_DISCORD":"Discord",
"LANDING_MENU_OPENCOLLECTIVE":"Open Collective",
"LANDING_MENU_DOCS":"Docs",
"LANDING_MAIN_TITLE":"Discover Watchit",
"LANDING_MAIN_SUBTITLE":"A new era for cinema begins here. Filmmakers have total control over their creations and reap the benefits directly through our unique distribution model. Start your journey, get inspired, and transform: Power to the creators, magic for the viewers.",
Expand Down
1 change: 1 addition & 0 deletions src/i18n/langs/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
"LANDING_APP_DOWNLOAD":"Descargar",
"LANDING_MENU_TWITTER":"Twitter",
"LANDING_MENU_DISCORD":"Discord",
"LANDING_MENU_OPENCOLLECTIVE":"Open Collective",
"LANDING_MENU_DOCS":"Documentación",
"LANDING_MAIN_TITLE":"Descubre Watchit",
"LANDING_MAIN_SUBTITLE":"Una nueva era para el cine comienza aquí. Los cineastas tienen control total sobre sus creaciones y obtienen beneficios directamente a través de nuestro modelo de distribución único. Empieza tu viaje, inspírate y transforma: Poder para los creadores, magia para los espectadores.",
Expand Down
4 changes: 2 additions & 2 deletions src/navigation/CONSTANTS.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
export const LANDING = '/'
export const DOCS = 'https://github.com/WatchItDev/watchit-app'
export const APP = 'https://web.watchit.movie/'
export const APP = 'https://app.watchit.movie/'
export const APP_DOWNLOAD = 'https://github.com/WatchItDev/watchit-app/releases'
export const MARKETPLACE = 'https://marketplace.watchitapp.site/'
export const TWITTER = 'https://twitter.com/app_watchit'
export const DISCORD = 'https://discord.gg/QJcSXedY'
export const OPENCOLLECTIVE = 'https://opencollective.com/watchit'
export const TELEGRAM = 'https://t.me/watchitofficial'
export const REDDIT = 'https://www.reddit.com/user/watchitapp'
export const INSTAGRAM = 'https://www.instagram.com/watchitapp/'
Expand Down
6 changes: 3 additions & 3 deletions src/pages/Landing/components/LandingHeaderMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
} from '@mui/material'

// PROJECT IMPORTS
import { DOCS, APP, TWITTER, DISCORD } from '@navigation/CONSTANTS'
import { DOCS, APP, TWITTER, OPENCOLLECTIVE } from '@navigation/CONSTANTS'
import {
Menu as MenuIcon,
ChevronRight as ChevronRightIcon
Expand Down Expand Up @@ -101,9 +101,9 @@ const HeaderMenuContent: FC = (): JSX.Element => {
<Translation target='LANDING_MENU_TWITTER' />
</Item>
</Link>
<Link href={DISCORD} target='_blank' rel='noreferrer'>
<Link href={OPENCOLLECTIVE} target='_blank' rel='noreferrer'>
<Item>
<Translation target='LANDING_MENU_DISCORD' />
<Translation target='LANDING_MENU_OPENCOLLECTIVE' />
</Item>
</Link>
<Link href={DOCS} target='_blank' rel='noreferrer'>
Expand Down

0 comments on commit b86f069

Please sign in to comment.