### Install and Preview Mintlify CLI Source: https://github.com/momtur/momtur-docs/blob/main/quickstart.mdx Instructions to install the Mintlify Command Line Interface globally using npm and then run the local development server to preview documentation changes. This allows developers to see their edits in real-time before deployment. ```Shell npm i -g mintlify mintlify dev ``` -------------------------------- ### Tracking Tools Setup Source: https://github.com/momtur/momtur-docs/blob/main/seo-testing-deployment-guide.md Details the setup and monitoring capabilities for various SEO and analytics tools like Google Search Console, SEMrush/Ahrefs, and Google Analytics 4. ```yaml Google Search Console: - Position tracking - Impression monitoring - CTR analysis - Query performance SEMrush/Ahrefs: - Daily rank tracking - Competitor analysis - SERP features monitoring - Backlink tracking Google Analytics 4: - Traffic sources - User behavior - Conversion tracking - Goal completions ``` -------------------------------- ### Pre-Deployment Checklist Source: https://github.com/momtur/momtur-docs/blob/main/seo-testing-deployment-guide.md A checklist of tasks to perform before deploying the Momtur project, including backups, environment validation, DNS/SSL configuration, and monitoring setup. ```bash # 1. Backup current site - Database backup - File system backup - Configuration backup # 2. Test environment validation - Stage environment matches production - All features tested on staging - Performance benchmarks met # 3. DNS and SSL - SSL certificate valid - DNS records configured - CDN settings optimized - Redirects configured # 4. Monitoring setup - Google Analytics configured - Google Search Console verified - Uptime monitoring active - Error tracking enabled ``` -------------------------------- ### Bodrum Cost Comparison Table Source: https://github.com/momtur/momtur-docs/blob/main/guides/how-to-get-to-bodrum.mdx A comparison table detailing travel methods, durations, and estimated costs (EUR) from various starting points to Bodrum, including comfort ratings. ```APIDOC Table: headers: [From, Method, Duration, Cost (EUR), Comfort] rows: - [Milas-Bodrum Airport, Private Transfer, 45 min, 50-90, ⭐⭐⭐⭐⭐] - [Milas-Bodrum Airport, Shuttle Bus, 90 min, 5-8, ⭐⭐⭐] - [Milas-Bodrum Airport, Taxi, 45 min, 60-100, ⭐⭐⭐⭐] - [Dalaman Airport, Private Transfer, 3 hours, 180-250, ⭐⭐⭐⭐⭐] - [Istanbul, Flight + Transfer, 3 hours, 100-200, ⭐⭐⭐⭐] - [Istanbul, Bus, 12 hours, 30-50, ⭐⭐] - [İzmir, Bus, 4 hours, 10-15, ⭐⭐⭐] - [İzmir, Car, 3.5 hours, 30+, ⭐⭐⭐⭐] ``` -------------------------------- ### Start Local Mintlify Development Server Source: https://github.com/momtur/momtur-docs/blob/main/development.mdx Starts the Mintlify development server to preview documentation locally. Ensure you are in the docs directory containing 'docs.json'. ```bash mintlify dev ``` -------------------------------- ### Schema for How-To Guide Source: https://github.com/momtur/momtur-docs/blob/main/guides/how-to-get-to-bodrum.mdx Defines a structured JSON-LD schema for a 'HowTo' guide, detailing steps, costs, and estimated times for reaching Bodrum. ```json { "@context": "https://schema.org", "@type": "HowTo", "name": "How to Get to Bodrum", "description": "Step-by-step guide on reaching Bodrum via different transportation methods", "image": "https://res.cloudinary.com/djzzikcey/image/upload/v1753431200/bodrum-transportation-guide.jpg", "totalTime": "PT30M", "estimatedCost": { "@type": "MonetaryAmount", "currency": "EUR", "value": "50-500" }, "supply": [], "tool": [], "step": [ { "@type": "HowToStep", "name": "Choose Your Airport", "text": "Select between Milas-Bodrum Airport (closest) or Dalaman Airport", "url": "https://momtur.com/guides/how-to-get-to-bodrum#by-air" }, { "@type": "HowToStep", "name": "Book Your Flight", "text": "Book direct or connecting flights to your chosen airport", "url": "https://momtur.com/guides/how-to-get-to-bodrum#flight-options" }, { "@type": "HowToStep", "name": "Arrange Airport Transfer", "text": "Book a private transfer, take a shuttle, or rent a car", "url": "https://momtur.com/guides/how-to-get-to-bodrum#airport-transfers" } ] } ``` -------------------------------- ### Upgrade Mintlify CLI and Configuration Source: https://github.com/momtur/momtur-docs/blob/main/quickstart.mdx Commands to upgrade the Mintlify CLI to the latest version and migrate the documentation configuration from the legacy `mint.json` file to the new `docs.json` format. This ensures compatibility with the latest features and improvements. ```Shell npm i -g mintlify@latest mintlify upgrade ``` -------------------------------- ### Major Marinas in Bodrum Source: https://github.com/momtur/momtur-docs/blob/main/guides/how-to-get-to-bodrum.mdx Lists the primary marinas located in and around Bodrum, catering to yacht and sailboat arrivals. ```markdown 1. **Milta Bodrum Marina** - Bodrum center 2. **Palmarina** - Yalıkavak 3. **Port Bodrum Yalıkavak** - Yalıkavak 4. **Bodrum Cruise Port** - For cruise ships ``` -------------------------------- ### SEO Analysis Tools Source: https://github.com/momtur/momtur-docs/blob/main/seo-testing-deployment-guide.md Leverages tools like Lighthouse, SEMrush, and Ahrefs for comprehensive SEO analysis, covering performance, accessibility, best practices, technical issues, on-page optimization, and content quality. ```bash # 1. Lighthouse (Chrome DevTools) - Performance score > 90 - Accessibility score > 95 - Best Practices score > 95 - SEO score = 100 # 2. SEMrush Site Audit - Technical SEO issues - On-page SEO analysis - Content quality check - Internal linking audit # 3. Ahrefs Site Audit - Crawl errors - Broken links - Duplicate content - Meta tag analysis ``` -------------------------------- ### Multi-language URL Structure Source: https://github.com/momtur/momtur-docs/blob/main/seo-implementation-guide.md Examples of language-specific URL structures for multi-language SEO implementation, ensuring proper indexing for different language versions of the website. ```text English: https://momtur.com/en/page Turkish: https://momtur.com/tr/page German: https://momtur.com/de/page Russian: https://momtur.com/ru/page Arabic: https://momtur.com/ar/page ``` -------------------------------- ### Install Mintlify CLI with npm Source: https://github.com/momtur/momtur-docs/blob/main/development.mdx Installs the Mintlify command-line interface globally using npm. This is the first step to running Mintlify locally. ```bash npm i -g mintlify ``` -------------------------------- ### React Components for UI Elements Source: https://github.com/momtur/momtur-docs/blob/main/guides/how-to-get-to-bodrum.mdx Imports Card and CardGroup components from '@mintlify/components' and various icons from 'lucide-react' for building user interfaces. ```javascript import { Card, CardGroup } from '@mintlify/components' import { Info, Warning, Check, Plane, Bus, Car, Ship, Clock, MapPin, DollarSign } from 'lucide-react' ``` -------------------------------- ### Ranking Drops - Immediate Actions and Recovery Steps Source: https://github.com/momtur/momtur-docs/blob/main/seo-testing-deployment-guide.md Markdown detailing immediate actions and recovery steps for ranking drops, including checking algorithm updates, penalties, technical issues, and competitor analysis. ```markdown Immediate Actions: 1. Check for Google algorithm updates 2. Verify no manual penalties 3. Check for technical issues 4. Review recent changes 5. Analyze competitor movements Recovery Steps: 1. Identify root cause 2. Create recovery plan 3. Implement fixes 4. Monitor recovery 5. Document lessons learned ``` -------------------------------- ### Parking Information in Bodrum Source: https://github.com/momtur/momtur-docs/blob/main/guides/how-to-get-to-bodrum.mdx Provides information on parking availability and costs in Bodrum, particularly during the summer season, and mentions hotel parking options. ```html **Parking in Bodrum:** Limited in summer. Hotels usually provide parking. Public parking: €2-5/day. ``` -------------------------------- ### Responsive Design Checklist Source: https://github.com/momtur/momtur-docs/blob/main/seo-testing-deployment-guide.md A checklist for verifying responsive design implementation, ensuring usability and proper display across various screen sizes and devices. ```markdown - [ ] Navigation menu works on all screen sizes - [ ] Text is readable without zooming - [ ] Buttons are easily tappable (min 48x48px) - [ ] Images scale properly - [ ] Tables are responsive or scrollable - [ ] Forms are mobile-optimized - [ ] CTAs are prominently visible - [ ] No horizontal scrolling - [ ] Font size minimum 16px - [ ] Adequate spacing between elements ``` -------------------------------- ### Deployment Steps - Phased Rollout Source: https://github.com/momtur/momtur-docs/blob/main/seo-testing-deployment-guide.md Details the phased rollout strategy for deployment, including soft launch, SEO submission, and full launch phases with associated tasks. ```yaml Phase 1 - Soft Launch (Day 1-3): - Deploy to production - Monitor for errors - Test all critical paths - Gather initial feedback Phase 2 - SEO Submission (Day 4-7): - Submit sitemap to Google - Submit to Bing Webmaster - Request indexing for key pages - Monitor crawl errors Phase 3 - Full Launch (Day 8+): - Announce to customers - Enable all features - Start promotional activities - Monitor performance metrics ``` -------------------------------- ### Bus Travel to Bodrum from Ankara Source: https://github.com/momtur/momtur-docs/blob/main/guides/how-to-get-to-bodrum.mdx Details for bus journeys to Bodrum from Ankara, covering travel time, cost, operating companies, and frequency. ```markdown - **Duration:** 10-11 hours - **Price:** €25-40 - **Companies:** Pamukkale, Metro - **Frequency:** 5+ departures daily ``` -------------------------------- ### Domestic Ferry Routes to Bodrum Source: https://github.com/momtur/momtur-docs/blob/main/guides/how-to-get-to-bodrum.mdx Information on domestic ferry services to Bodrum, specifically mentioning seasonal routes from Istanbul and their limited passenger capacity. ```markdown **From Istanbul (Seasonal):** - **Duration:** 16-20 hours - **Price:** €50-100 - **Frequency:** Limited summer service - **Note:** Primarily cargo, limited passenger service ``` -------------------------------- ### Performance Benchmarks - Weekly KPIs Source: https://github.com/momtur/momtur-docs/blob/main/seo-testing-deployment-guide.md Outlines key performance indicators (KPIs) and targets for the first week, first month, and first quarter post-deployment. ```markdown Week 1 Targets: - [ ] All pages indexed - [ ] No crawl errors - [ ] Core Web Vitals pass - [ ] Mobile score > 90 Month 1 Targets: - [ ] 20% increase in organic traffic - [ ] Top 10 for 5 primary keywords - [ ] Bounce rate < 40% - [ ] Conversion rate > 2% Quarter 1 Targets: - [ ] 50% increase in organic traffic - [ ] Top 5 for primary keywords - [ ] 100+ quality backlinks - [ ] Domain Authority increase ```