generated from koinos/koinos-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
245b176
commit 2135f1c
Showing
13 changed files
with
311 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
export default async function getMessages(locale) { | ||
return (await import(`../messages/${locale}.json`)).default; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"Menu": { | ||
"learn": "Learn", | ||
"whitepaper": "Whitepaper", | ||
"features": "Features", | ||
"faqs": "FAQs", | ||
"documentation": "Documentation", | ||
"ecosystem": "Ecosystem", | ||
"roadmap": "Roadmap", | ||
"team": "Team" | ||
}, | ||
"Hero": { | ||
"title1": "Web3 for Everyone", | ||
"title2": "Frictionless, Simple, Powerful", | ||
"subtitle": "Koinos is engineered to deliver a user experience for everyday people.", | ||
"buttons": { | ||
"telegram": "Join Telegram", | ||
"build": "Build on Koinos" | ||
} | ||
}, | ||
"FeatureEcosystem": { | ||
"sectionId": "Ecosystem Highlights", | ||
"title": "An Ever-Evolving Ecosystem", | ||
"description": "With new and innovative dApps popping up every week, Koinos facilitates a bright future for Web3. Check out the <ecosystemLink>ecosystem</ecosystemLink> page to learn about more great projects.", | ||
"ecosystemLink": "ecosystem", | ||
"benefits": { | ||
"item1": "Onboard new users with free accounts and allow them to interact with your dApp without cryptocurrency", | ||
"item2": "Tap into the community to bootstrap your ideas and bring them to fruition" | ||
}, | ||
"projects": { | ||
"kollection": { | ||
"title": "Kollection", | ||
"description": "<kollectionLink>Kollection</kollectionLink> is a full featured NFT marketplace that allows creators to launch and sell their products." | ||
}, | ||
"koindx": { | ||
"title": "KoinDX", | ||
"description": "<koindxLink>KoinDX</koindxLink> is the world's first decentralized exchange built on the Koinos blockchain." | ||
}, | ||
"koiner": { | ||
"title": "Koiner", | ||
"description": "<koinerLink>Koiner</koinerLink> is the Koinos' community favorite block explorer giving users insights into chain statistics." | ||
}, | ||
"koincity": { | ||
"title": "KoinCity", | ||
"description": "<koincityLink>KoinCity</koincityLink> is a token launchpad with features including staking and social interaction." | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
{ | ||
"Menu": { | ||
"learn": "Aprende", | ||
"whitepaper": "Libro Blanco", | ||
"features": "Características", | ||
"faqs": "Preguntas Frecuentes", | ||
"documentation": "Documentación", | ||
"ecosystem": "Ecosistema", | ||
"roadmap": "Hoja de Ruta", | ||
"team": "Equipo" | ||
}, | ||
"Hero": { | ||
"title1": "Web3 para Todos", | ||
"title2": "Sin Fricción, Simple, Potente", | ||
"subtitle": "Koinos está diseñado para ofrecer una experiencia de usuario para personas comunes.", | ||
"buttons": { | ||
"telegram": "Únete a Telegram", | ||
"build": "Construye en Koinos" | ||
} | ||
}, | ||
"FeatureEcosystem": { | ||
"sectionId": "Destacados del Ecosistema", | ||
"title": "Un Ecosistema en Constante Evolución", | ||
"description": "Con nuevas e innovadoras dApps surgiendo cada semana, Koinos facilita un futuro brillante para Web3. Visita la página del <ecosystemLink>ecosistema</ecosystemLink> para conocer más proyectos increíbles.", | ||
"ecosystemLink": "ecosistema", | ||
"benefits": { | ||
"item1": "Incorpora nuevos usuarios con cuentas gratuitas y permíteles interactuar con tu dApp sin criptomonedas", | ||
"item2": "Aprovecha la comunidad para impulsar tus ideas y llevarlas a cabo" | ||
}, | ||
"projects": { | ||
"kollection": { | ||
"title": "Kollection", | ||
"description": "<kollectionLink>Kollection</kollectionLink> es un mercado NFT completo que permite a los creadores lanzar y vender sus productos." | ||
}, | ||
"koindx": { | ||
"title": "KoinDX", | ||
"description": "<koindxLink>KoinDX</koindxLink> es el primer intercambio descentralizado construido en la blockchain de Koinos." | ||
}, | ||
"koiner": { | ||
"title": "Koiner", | ||
"description": "<koinerLink>Koiner</koinerLink> es el explorador de bloques favorito de la comunidad Koinos que proporciona información sobre las estadísticas de la cadena." | ||
}, | ||
"koincity": { | ||
"title": "KoinCity", | ||
"description": "<koincityLink>KoinCity</koincityLink> es una plataforma de lanzamiento de tokens con características que incluyen staking e interacción social." | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
import createMiddleware from 'next-intl/middleware'; | ||
|
||
export default createMiddleware({ | ||
locales: ['en', 'es'], | ||
defaultLocale: 'en', | ||
localePrefix: 'always', | ||
timeZone: 'UTC' | ||
}); | ||
|
||
export const config = { | ||
matcher: ['/', '/(es|en)/:path*'] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.