π Quick Start Guide - MTJ Data Analytics Website
What You Have
A complete Quarto website for MTJ Data Analytics with: - β 6 fully-designed pages - β Professional blue theme - β Mobile-responsive design - β Contact forms and service listings - β Pricing tables - β Webinar/training information
Files Included
Your Website Files/
βββ _quarto.yml β Main configuration
βββ custom.scss β Theme colors
βββ styles.css β Styling
βββ index.qmd β Home page
βββ services.qmd β Services page
βββ pricing.qmd β Pricing page
βββ webinars.qmd β Webinars page
βββ about.qmd β About page
βββ contact.qmd β Contact page
βββ build_website.R β Build helper script
βββ README.md β Full documentation
βββ DEPLOYMENT.md β Deployment guide
βββ QUICKSTART.md β This file!
3-Step Setup
Step 1: Install Quarto (5 minutes)
- Go to: https://quarto.org/docs/get-started/
- Download for your system (Windows/Mac/Linux)
- Install it (just click Next, Next, Finish)
- Done!
Step 2: Add Your Logo (Optional)
- Save your logo as
logo.pngin the website folder - If you donβt have a logo yet, thatβs okay - the text logo works fine
Step 3: Build Your Website (1 minute)
Option A - Easy Way (RStudio):
1. Open RStudio
2. Open the website folder
3. Click "Render Website" button
4. Done! Website is in docs/ folder
Option B - Command Line:
cd /path/to/website
quarto renderOption C - Using R Script:
source("build_website.R")
# Then choose option 1 from the menuWhat Happens Next?
After building, youβll have a docs/ folder containing your complete website: - docs/index.html - Your home page - docs/services.html - Services page - And all other pages + styling
View Your Website
Preview before deploying:
quarto previewOpens in your browser at http://localhost:4200
Deploy Your Website (Choose One)
π Easiest: Netlify Drop
- Go to https://app.netlify.com/drop
- Drag the
docs/folder onto the page - Done! You get a free website at yourname.netlify.app
π₯ Best for Free: GitHub Pages
- Create GitHub account (if needed)
- Create repository called βmtj-websiteβ
- Upload your files
- Enable Pages in Settings β Pages
- Live at yourusername.github.io/mtj-website
πΌ If You Have Hosting
- Build the website (Step 3 above)
- Upload contents of
docs/folder via FTP to your server - Done!
Full deployment instructions in DEPLOYMENT.md
Customize Your Website
Change Colors
Edit these files: - custom.scss - Change $primary: #0047AB; to your color - styles.css - Search for #0047AB and replace
Update Content
Edit any .qmd file: - Use regular text for paragraphs - Use # for headings - Use - for bullet points
Example:
## My Section
This is a paragraph.
- Bullet point 1
- Bullet point 2After changes, run quarto render again.
Add Webinars
Edit webinars.qmd and copy one of the webinar card sections, then modify:
::: {.webinar-card}
### π Your Webinar Title
**Date:** March 15, 2025
**Time:** 2:00 PM WAT
Description here...
[Register](https://wa.me/2349019441200){.register-btn}
:::Update Prices
Edit the tables in pricing.qmd:
| Service | Cost (β¦) |
|---------|----------|
| My Service | 50,000 |Need Help?
Common Issues
βQuarto not foundβ β Install Quarto from quarto.org
βCannot renderβ β Make sure youβre in the correct folder with _quarto.yml
βWebsite looks wrongβ β Make sure you uploaded ALL files from docs/ folder
Get Support
- π Read: README.md (full documentation)
- π Read: DEPLOYMENT.md (deployment details)
- π§ Email: info@mtjdataanalytics.com
- π± WhatsApp: +234 901 944 1200
Pro Tips
- Always preview before deploying - Catch errors early!
- Keep a backup - Copy the whole folder somewhere safe
- Test on mobile - Open on your phone after deploying
- Update regularly - Add new content monthly
- Share on social media - Let people know about your new site!
Whatβs Next?
After your website is live:
- β Add it to your email signature
- β Share on Facebook/LinkedIn
- β Update Google My Business
- β Add to WhatsApp status
- β Tell your clients!
Remember
- Build =
quarto render(creates the website) - Preview =
quarto preview(view locally) - Deploy = Upload docs/ folder (make it live)
Youβve got this! Your professional website is ready to go live! π
Need the full details? Check README.md Ready to deploy? Check DEPLOYMENT.md
Good luck! - The MTJ Data Analytics Team