Dashboard
Welcome to the MSA Admin Panel. Here's your site overview.
Recent Activity
Last 7 days| Action | Details | User | Time |
|---|---|---|---|
| ✅ New Member | Startup tier — Tech Company LLC | system | 2h ago |
| 📝 Post Published | "AI Trends in Mongolia 2025" | admin | 5h ago |
| 📅 Event Created | Founders Dinner — April 2025 | admin | 1d ago |
| ✅ New Member | Investor tier — Bold Capital | system | 2d ago |
| 💬 Testimonial | New testimonial from Т. Ганболд | system | 3d ago |
Members
Manage startup and investor members of the association.
All Members (250)
| Company | Contact | Tier | Status | Joined | Actions |
|---|---|---|---|---|---|
| FinTech MN | bold@fintechmn.mn | Startup | Active | Jan 2024 | |
| AgriTech Mongolia | narantuya@agritech.mn | Scaleup | Active | Mar 2024 | |
| Bold Capital | info@boldcapital.mn | Investor | Active | Feb 2024 | |
| EduTech.mn | tegsh@edutech.mn | Startup | Pending | Mar 2025 | |
| GreenEnergy MN | ceo@greenenergy.mn | Scaleup | Active | Nov 2023 |
Events
Create and manage upcoming and past events.
All Events
| Event Name (MN) | Event Name (EN) | Date | Location | Type | Status | Actions |
|---|---|---|---|---|---|---|
| Монгол Стартап Форум 2025 | Mongolia Startup Forum 2025 | Apr 15, 2025 | Ulaanbaatar | Conference | Active | |
| Хөрөнгө оруулалт татах вебинар | Fundraising Masterclass | Mar 20, 2025 | Online | Webinar | Active | |
| Үүсгэн байгуулагчдын оройн зоог | Founders Dinner | Mar 28, 2025 | Ulaanbaatar | Dinner | Pending |
Blog Posts
Write and manage blog articles in both Mongolian and English.
All Posts
| Title (MN) | Title (EN) | Category | Status | Date | Actions |
|---|---|---|---|---|---|
| Стартап компани байгуулах гарын авлага | How to Incorporate a Startup | Legal | Published | Mar 1, 2025 | |
| Монголын анхны VC fund | Mongolia's First VC Fund | Funding | Published | Feb 18, 2025 | |
| AI стартапуудын боломж | AI Startup Opportunities | Technology | Draft | Feb 5, 2025 |
Partners
Manage official MSA partners and sponsors.
All Partners
| Partner Name | Category | Website | Status | Actions |
|---|---|---|---|---|
| Golomt Bank | Finance | golomtbank.mn | Active | |
| Mongolian National University | Education | num.edu.mn | Active | |
| MIGA Capital | Investment | miga.mn | Pending |
Testimonials
Manage member quotes displayed on the homepage.
All Testimonials
| Author | Company | Preview (MN) | Status | Actions |
|---|---|---|---|---|
| Болд Дамдинсүрэн | FinTech MN | МСА нь манай стартапыг зөв чиглэлд... | Active | |
| Нарантуяа Алтан | AgriTech Mongolia | Арга хэмжээнүүд нь маш их энерги... | Active | |
| Тэгшбаяр Ганболд | EduTech.mn | МСА нь зөвхөн холбоо бус... | Active |
Hero & Home Content
Edit the main headline, subtitle and CTA buttons shown on the homepage.
Hero Section
Edit the main headline and subtitle text (bilingual).
Ticker Bar
Edit the scrolling ticker bar messages.
Site Statistics
Update the key numbers shown on the homepage.
Homepage Stats
These numbers appear in the hero section and the stats banner.
Newsletter
View subscribers and manage newsletter settings.
Recent Subscribers
| Subscribed | Source | Actions | |
|---|---|---|---|
| founder@startup.mn | Mar 1, 2025 | Homepage | |
| ceo@company.mn | Feb 28, 2025 | Event Page | |
| investor@fund.mn | Feb 27, 2025 | Direct |
Settings
Configure site-wide settings and preferences.
Site Configuration
Default Language
Language shown to visitors by default
Maintenance Mode
Show maintenance page to visitors
Cookie Notice
Show cookie consent banner
Newsletter Signup
Show newsletter section on homepage
Contact Info
Contact Email
info@msa.mn
Address
Ulaanbaatar, Mongolia
Supabase Configuration
Connect your Supabase project to enable full database-backed content management.
Supabase Connection
Enter your Supabase project URL and anon key from your project dashboard at supabase.com.
Required Database Tables
Your Supabase project needs these tables. Copy and run this SQL in your Supabase SQL editor:
-- Members table
CREATE TABLE members (
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
company_name TEXT NOT NULL,
contact_email TEXT,
tier TEXT CHECK (tier IN ('startup','scaleup','investor','enthusiast')),
status TEXT DEFAULT 'pending',
created_at TIMESTAMPTZ DEFAULT NOW()
);
-- Events table
CREATE TABLE events (
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
title_mn TEXT NOT NULL,
title_en TEXT NOT NULL,
description_mn TEXT,
description_en TEXT,
event_date DATE,
location TEXT,
event_type TEXT,
status TEXT DEFAULT 'active',
created_at TIMESTAMPTZ DEFAULT NOW()
);
-- Blog posts table
CREATE TABLE posts (
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
title_mn TEXT NOT NULL,
title_en TEXT NOT NULL,
body_mn TEXT,
body_en TEXT,
category TEXT,
tags TEXT[],
status TEXT DEFAULT 'draft',
published_at TIMESTAMPTZ,
created_at TIMESTAMPTZ DEFAULT NOW()
);
-- Partners table
CREATE TABLE partners (
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
name TEXT NOT NULL,
category TEXT,
website TEXT,
logo_url TEXT,
status TEXT DEFAULT 'active'
);
-- Testimonials table
CREATE TABLE testimonials (
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
author_name TEXT NOT NULL,
author_role TEXT,
company TEXT,
quote_mn TEXT,
quote_en TEXT,
status TEXT DEFAULT 'active'
);
-- Newsletter subscribers
CREATE TABLE newsletter_subscribers (
id uuid DEFAULT gen_random_uuid() PRIMARY KEY,
email TEXT UNIQUE NOT NULL,
source TEXT DEFAULT 'website',
subscribed_at TIMESTAMPTZ DEFAULT NOW(),
active BOOLEAN DEFAULT true
);
-- Site settings (key-value)
CREATE TABLE site_settings (
key TEXT PRIMARY KEY,
value_mn TEXT,
value_en TEXT,
updated_at TIMESTAMPTZ DEFAULT NOW()
);
Cloudflare Deployment
For deploying to Cloudflare Pages, set these environment variables in your Pages project dashboard:
VITE_SUPABASE_URL=https://your-project.supabase.co VITE_SUPABASE_ANON_KEY=your-anon-key-here
Deploy by connecting your GitHub repo to Cloudflare Pages. The admin panel uses Supabase Auth — set up an admin user in your Supabase Auth dashboard.