MMSWE is an open-source platform where Myanmar software engineers can showcase their profiles, share technical articles, and connect with the community. Built as a static site deployed to GitHub Pages, it serves as a living directory of Myanmar's developer talent.
- Developer Profiles — 116+ engineer profiles with tech stacks, bios, and custom MDX pages
- Blog Platform — Technical articles written by community members
- Profile Editor — In-browser tool to create your profile MDX file without writing code
- Myanmar & English — Full bilingual support with EN/MM toggle, powered by next-intl
- Responsive Design — Obsidian Prism dark theme with animated interactions
| Layer | Technology |
|---|---|
| Framework | Next.js 16 (App Router, Static Export) |
| Language | TypeScript, React 19 |
| Styling | Tailwind CSS 3 + DaisyUI + Sass |
| Content | Contentlayer2 with MDX |
| Animation | Framer Motion, Three.js, React Three Fiber |
| i18n | next-intl (Myanmar & English) |
| Fonts | Bricolage Grotesque, Plus Jakarta Sans, JetBrains Mono, KhitHaungg (Myanmar) |
| Package Manager | Bun |
| Deployment | GitHub Pages via GitHub Actions |
- Bun (recommended) or Node.js 18+
- Git
# Clone the repository
git clone https://github.com/myanmar-software-engineers/myanmar-software-engineers.github.io.git
cd myanmar-software-engineers.github.io
# Install dependencies
bun install
# Start development server
bun devOpen http://localhost:3000 to view the site.
bun dev # Start dev server
bun run build # Build static site (output: ./out)
bun run serve # Serve static build locally
bun run lint # Run ESLint
bun run content:build # Rebuild contentlayer content
bun run commit # Interactive gitmoji commit helperThere are two ways to add your profile to MMSWE:
Visit mmswe.com/profile/editor to create your profile using the visual editor. Fill in your details, preview in real-time, and download the .mdx file.
- Fork this repository
- Create a new file in
content/profile/with your name (lowercase, no spaces):
content/profile/yourname.mdx
- Add frontmatter and content:
---
name: Your Name
description: A short bio about yourself
image: "https://avatars.githubusercontent.com/u/YOUR_ID?v=4"
tags:
- Frontend
- React
- TypeScript
---
Write your profile content here using standard markdown.
## About Me
Hello! I'm a software engineer from Myanmar...- Submit a Pull Request to the
mainbranch
| Field | Required | Description |
|---|---|---|
name |
Yes | Your display name |
description |
No | Short bio (shown on profile card) |
image |
No | Avatar URL (GitHub avatar recommended) |
tags |
No | Technology/skill tags |
- Fork this repository
- Create a new file in
content/books/:
content/books/your-book-title.mdx
- Add frontmatter and content:
---
title: book title
authorName: the name of book author
link: https://example.com/book-link
image: https://example.com/book-cover.jpg
authorEmail: author@example.com
authorLink: https://example.com
---
Short note about why this book is recommended.- Submit a Pull Request to the
mainbranch
| Field | Required | Description |
|---|---|---|
title |
Yes | Book title |
authorName |
Yes | Author name |
link |
Yes | Official/primary resource link |
image |
No | Book cover image URL |
authorEmail |
No | Author contact email |
authorLink |
No | Author website/profile URL |
- Fork this repository
- Create a new file in
content/classes/:
content/classes/your-class-title.mdx
- Add frontmatter and content:
---
title: your class title
description: short description of your class
instructorName: class mentor name
classLink: https://example.com/classes/react-bootcamp
tags: tags for tech-stack that involve in this class
classType: online or in-person
status: upcoming/completed/incoming
proofOfAssociation: Proof that submitter is affiliated with the class.
image: https://example.com/class-cover.jpg
---
Add trust context, schedule notes, and useful details for learners.
This is important because PR without trust context for class will be denied.- Submit a Pull Request to the
mainbranch
| Field | Required | Description |
|---|---|---|
title |
Yes | Class title |
description |
Yes | Summary of class content |
instructorName |
Yes | Instructor or organization |
classLink |
Yes | Official class link |
tags |
Yes | Topic tags (e.g. React, Python) |
classType |
Yes | One of: online, In-Person |
status |
Yes | One of: active, completed, incoming |
proofOfAssociation |
Yes | Credibility/proof note for maintainers |
image |
No | Class cover image URL |
src/
app/ # Next.js App Router pages
blog/ # Blog listing & [slug] pages
profile/ # Profile listing, [slug] & editor pages
contact-us/ # Contact page
components/ # React components
MSE/ # Homepage sections (Hero, Join, Platform, etc.)
Common/ # Shared UI (Navbar, Footer, Container, Tag, Mdx)
Profile/ # Profile cards & lists
ProfileEditor/ # Profile creation tool components
Contributors/ # Custom contributor page widgets
Ui/ # Base UI elements
context/ # React context (LanguageProvider)
config/ # App configuration
data/ # Static data & animation variants
hooks/ # Custom React hooks
styles/ # Global SCSS & Tailwind tokens
utils/ # Utility functions
i18n/ # next-intl configuration
fonts/ # Local fonts (KhitHaungg Myanmar font)
content/
profile/ # Developer profile MDX files (116+)
blog/ # Blog post MDX files
messages/
en.json # English translations
mm.json # Myanmar translations
MMSWE uses the Obsidian Prism theme — a dark interface with prismatic accent colors:
| Token | Color | Usage |
|---|---|---|
obsidian |
#09090b |
Base background |
surface |
#1a1a22 |
Card backgrounds |
prism-cyan |
#22d3ee |
Primary accent |
prism-violet |
#a78bfa |
Secondary accent |
prism-rose |
#fb7185 |
Tertiary accent |
accent-gold |
#fbbf24 |
Highlight accent |
Typography uses Bricolage Grotesque for display, Plus Jakarta Sans for body, JetBrains Mono for code, and KhitHaungg for Myanmar script.
The site supports Myanmar and English with an EN/MM toggle in the Navbar. Localization is opt-in per component using next-intl.
LanguageProvider(src/context/LanguageContext.tsx) manages locale state withuseSyncExternalStore+localStoragepersistenceuseLanguagehook (src/hooks/useLanguage.ts) provideslocale,setLocale,isMyanmar,isEnglish- Translation files in
messages/en.jsonandmessages/mm.jsonwith namespaced keys - Myanmar font: KhitHaungg (
src/fonts/khit-haungg/) loaded vianext/font/local, applied withkhitHaungg.classNamewhen Myanmar is active
- Add keys to both
messages/en.jsonandmessages/mm.jsonunder a namespace - In your component, use
useTranslations("namespace")anduseLanguage():
const t = useTranslations("mySection");
const { isMyanmar } = useLanguage();
const mmFont = isMyanmar ? khitHaungg.className : "";
return <h1 className={mmFont}>{t("title")}</h1>;- Use
khitHaungg.classNamedirectly (not Tailwindfont-myanmarclass) - Avoid
bg-clip-text text-transparentfor Myanmar text — use solid colors instead (e.g.text-prism-cyan) - Remove
overflow-hiddenfrom parent containers when Myanmar is active - Use
leading-[1.6]withpy-2for large Myanmar headings - Disable character-by-character
AnimateTextfor Myanmar — render plain text instead
We welcome contributions from all Myanmar software engineers!
- Add your profile — Follow the profile guide above
- Write a blog post — Create an
.mdxfile incontent/blog/ - Improve the platform — Fix bugs, add features, improve UI
- Report issues — Open an issue on GitHub
This project uses gitmoji commits enforced by commitlint + Husky:
:sparkles: feat: add new feature
:bug: fix: fix a bug
:lipstick: style: update UI/UX
:fire: build(profile): add yourname profile
:beers: build(blog): add blog post title
:recycle: refactor: refactor code
:zap: perf: improve performance
:memo: docs: update documentation
Use bun run commit for an interactive commit helper.
- Fork and clone the repository
- Create a feature branch:
git checkout -b feat/your-feature - Make your changes and ensure
bun run buildpasses - Submit a pull request to
main
The site automatically deploys to GitHub Pages on every push to main via GitHub Actions:
- Installs dependencies with Bun
- Builds the static site (
next buildwithoutput: "export") - Deploys the
./outdirectory to GitHub Pages
- Facebook Group: Myanmar Software Engineers
- GitHub: myanmar-software-engineers
- Website: mmswe.com
This project is licensed under the MIT License.
Copyright (c) 2023 — Lwin Moe Paing
Built with love by the Myanmar Software Engineers community.