All Projects → yearn → yearn-comms

yearn / yearn-comms

Licence: MIT License
Collection of communication, announcements, tweets, newsletters, and other articles about Yearn and a hosted blog for all translation contributors.

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to yearn-comms

Personal-Site-Gourav.io
My personal site & blog made with NextJS, Typescript, MDX, Tailwind CSS. Deployed on Vercel : https://gourav.io
Stars: ✭ 64 (+300%)
Mutual labels:  nextjs, vercel
platforms
A template for site builders and low-code tools.
Stars: ✭ 1,156 (+7125%)
Mutual labels:  nextjs, vercel
static-template-nextjs
A Next.js based template of a blog built using the Collected Notes API
Stars: ✭ 19 (+18.75%)
Mutual labels:  nextjs, vercel
notion-nextjs-blog
A starter blog template powered by Next.js, Notion and Tailwind CSS.
Stars: ✭ 25 (+56.25%)
Mutual labels:  nextjs, vercel
nx-extend
Nx Workspaces builders and tools
Stars: ✭ 67 (+318.75%)
Mutual labels:  translations, vercel
website
My portfolio 👋
Stars: ✭ 232 (+1350%)
Mutual labels:  nextjs, vercel
wefootwear-store
next js footwear store e-commerce 🚀🚀🚀
Stars: ✭ 17 (+6.25%)
Mutual labels:  nextjs, vercel
onlysetups
OnlyFans, but for pictures of desk setups.
Stars: ✭ 82 (+412.5%)
Mutual labels:  nextjs, vercel
Next.js
The React Framework
Stars: ✭ 78,384 (+489800%)
Mutual labels:  nextjs, vercel
Notion Blog
A Next.js site using new SSG support with a Notion backed blog
Stars: ✭ 2,339 (+14518.75%)
Mutual labels:  nextjs, vercel
Swr
React Hooks for data fetching
Stars: ✭ 20,348 (+127075%)
Mutual labels:  nextjs, vercel
dev-cover
🌐 Get and publish your developer portfolio with just your username
Stars: ✭ 155 (+868.75%)
Mutual labels:  nextjs, vercel
website
The Algorithms website providing GitHub's largest open-source algorithm library.
Stars: ✭ 616 (+3750%)
Mutual labels:  translations, vercel
portfolio
My personal portfolio website, proudly built with Next.js, TypeScript and Tailwind
Stars: ✭ 165 (+931.25%)
Mutual labels:  nextjs, vercel
next-serverless
☁️ next-serverless deploys your next.js application to AWS Lambda with minimal or even no configuration.
Stars: ✭ 80 (+400%)
Mutual labels:  nextjs
Batteries-Included-Next.js
A starting boilerplate for a TS Next.js project with batteries included. Tailwind CSS for styling, Jest and React Testing Library working with path aliases and node-mock-http for API route testing.
Stars: ✭ 35 (+118.75%)
Mutual labels:  nextjs
gbkel-portfolio
💎 My personal website that's mainly powered by Next.js, my own style guide and a lot of other technologies.
Stars: ✭ 12 (-25%)
Mutual labels:  nextjs
node-blog-app
🌐 A node+espress+mongoose+react+nextjs blog
Stars: ✭ 12 (-25%)
Mutual labels:  nextjs
addtobasic.github.io
CUI Portfolio like ubuntu terminal.
Stars: ✭ 18 (+12.5%)
Mutual labels:  nextjs
monorepo-typescript-next-the-sane-way
A monorepo example using TypeScript and Next.js
Stars: ✭ 104 (+550%)
Mutual labels:  nextjs

yearn-comms

This is a collection of communication, announcements, tweets, newsletters, and other articles about yearn.

How to run

  • Install yarn.
  • Run yarn to install dependencies.
  • Run yarn run dev to run the blog.
  • Navigate to http://localhost:3000 to access the blog.

How to contribute

  • All the articles, announcements, newletters and tweets are stored in the public/_posts folder.

  • All the translations should be .md files, with a name matching the locale you want to write the article in. The supported name files are :

    en.md, fr.md, es.md, de.md, pt.md, el.md, tr.md, vi.md, zh.md, hi.md, ja.md, ru.md

  • Once a new article is published, a new subfolder will be created with the slug of the article. This will be the URI to access this article:

    Article name: "What is a DAO" -> Slug should be what-is-a-dao -> URI will be /article/what-is-a-dao

  • The default article is the one named en.md

  • Contributors should fork the repository and click the Add new File button on Github, copy the content of the en.md file and name the file <locale>.md

  • Contributors could fill the translator: field with their name/tag in the header of the article to get credited on the website

  • Contributors could translate the title: field in the header of the article

Relevant Structure

yearn-comms/
├── README.md
├── components/
│   ├── icons/                              # Set of SVG icons translated to React components.
│   └── xxxx.js                             # List of components used accross the blog.
├── contexts/
│   ├── useLocalization.js                  # Context to handle the localization system.
│   └── useUI.js                            # Context to handle the light/dark theme.
├── hooks/
│   └── useLocalStorage.js                  # Hook to store some state in the local storage.
├── localization/
│   └── [locale].json                       # Set of localized strings.
├── pages/
│   └── *.js                                # All the pages and system of the blog. Used by NextJS.
├── public/
│   ├── _posts/
│   │   ├── _announcements/*                # Set of folders and subfolders containing the announcements.
│   │   ├── _articles/*                     # Set of folders and subfolders containing the articles.
│   │   ├── _financials/*                   # Set of folders and subfolders containing the financials.
│   │   ├── _newsletters/*                  # Set of folders and subfolders containing the newsletters.
│   │   ├── _podcasts/*                     # Set of folders and subfolders containing the podcasts.
│   │   └── _tweets/*                       # Set of folders and subfolders containing the tweets.
│   ├── favicons/                           # Favicons used by the blog
│   ├── default.jpeg                        # default cover image used by the blog
│   └── og.png                              # Open Graph image used by the blog
├── utils/
│   └── *.js                                # Set of useful functions used by the blog system.
└── style/Default.css                       # Default CSS used by the blog.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].