commit d7cc2e23f4c28e8f34f4798aaf77242d9076029a Author: Kevin Bataille Date: Sat Oct 11 13:53:31 2025 +0200 Dumped maoremobile.yt diff --git a/.hugo_build.lock b/.hugo_build.lock new file mode 100644 index 0000000..e69de29 diff --git a/archetypes/default.md b/archetypes/default.md new file mode 100644 index 0000000..25b6752 --- /dev/null +++ b/archetypes/default.md @@ -0,0 +1,5 @@ ++++ +date = '{{ .Date }}' +draft = true +title = '{{ replace .File.ContentBaseName "-" " " | title }}' ++++ diff --git a/content/en/_index.md b/content/en/_index.md new file mode 100644 index 0000000..0d55563 --- /dev/null +++ b/content/en/_index.md @@ -0,0 +1,36 @@ +--- +title: "Home" +date: 2025-10-11T13:32:00+00:00 +draft: false +--- + +# Welcome to Maore Mobile + +Professional mobile services in Mayotte + +## Our Services + +### Mobile Phones +- Mobile phone sales +- Custom mobile plans +- Mobile accessories + +### Repair Services +- Fast smartphone repairs +- Original spare parts +- Warranty on repairs + +### Technical Support +- Local customer support +- Device setup +- User training + +## Contact +- **Phone**: +262 XXX XXX XXX +- **Email**: contact@maoremobile.yt +- **Address**: Mayotte, 97600 + +## Hours +- Monday - Friday: 8:00 AM - 6:00 PM +- Saturday: 9:00 AM - 1:00 PM +- Sunday: Closed \ No newline at end of file diff --git a/content/fr/_index.md b/content/fr/_index.md new file mode 100644 index 0000000..c22b3cb --- /dev/null +++ b/content/fr/_index.md @@ -0,0 +1,36 @@ +--- +title: "Accueil" +date: 2025-10-11T13:32:00+00:00 +draft: false +--- + +# Bienvenue chez Maore Mobile + +Services mobiles professionnels à Mayotte + +## Nos Services + +### Téléphonie Mobile +- Vente de téléphones portables +- Forfaits mobiles adaptés +- Accessoires mobiles + +### Réparation +- Réparation rapide de smartphones +- Pièces détachées d'origine +- Garantie sur nos réparations + +### Assistance Technique +- Support client local +- Configuration d'appareils +- Formation à l'utilisation + +## Contact +- **Téléphone**: +262 XXX XXX XXX +- **Email**: contact@maoremobile.yt +- **Adresse**: Mayotte, 97600 + +## Horaires +- Lundi - Vendredi: 8h00 - 18h00 +- Samedi: 9h00 - 13h00 +- Dimanche: Fermé \ No newline at end of file diff --git a/hugo.toml b/hugo.toml new file mode 100644 index 0000000..e3c32cc --- /dev/null +++ b/hugo.toml @@ -0,0 +1,22 @@ +baseURL = 'https://maoremobile.yt/' +title = 'Maore Mobile' + +defaultContentLanguage = 'fr' +defaultContentLanguageInSubdir = true + +[languages] + [languages.fr] + languageCode = 'fr' + languageName = 'Français' + weight = 1 + title = 'Maore Mobile' + + [languages.en] + languageCode = 'en' + languageName = 'English' + weight = 2 + title = 'Maore Mobile' + +[params] + description = "Services mobiles à Mayotte" + author = "Maore Mobile" diff --git a/i18n/en.toml b/i18n/en.toml new file mode 100644 index 0000000..746e167 --- /dev/null +++ b/i18n/en.toml @@ -0,0 +1,29 @@ +[contact] +other = "Contact" + +[phone] +other = "Phone" + +[email] +other = "Email" + +[address] +other = "Address" + +[hours] +other = "Hours" + +[weekdays] +other = "Monday - Friday" + +[saturday] +other = "Saturday" + +[sunday] +other = "Sunday" + +[closed] +other = "Closed" + +[allRightsReserved] +other = "All rights reserved" \ No newline at end of file diff --git a/i18n/fr.toml b/i18n/fr.toml new file mode 100644 index 0000000..6f37e8e --- /dev/null +++ b/i18n/fr.toml @@ -0,0 +1,29 @@ +[contact] +other = "Contact" + +[phone] +other = "Téléphone" + +[email] +other = "Email" + +[address] +other = "Adresse" + +[hours] +other = "Horaires" + +[weekdays] +other = "Lundi - Vendredi" + +[saturday] +other = "Samedi" + +[sunday] +other = "Dimanche" + +[closed] +other = "Fermé" + +[allRightsReserved] +other = "Tous droits réservés" \ No newline at end of file diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html new file mode 100644 index 0000000..3c0eebf --- /dev/null +++ b/layouts/_default/baseof.html @@ -0,0 +1,208 @@ + + + + + + {{ .Site.Title }} - {{ .Title }} + + + + + {{ partial "header.html" . }} + +
+
+ {{ block "main" . }}{{ end }} +
+
+ + {{ partial "footer.html" . }} + + \ No newline at end of file diff --git a/layouts/_default/list.html b/layouts/_default/list.html new file mode 100644 index 0000000..8897c1f --- /dev/null +++ b/layouts/_default/list.html @@ -0,0 +1,45 @@ +{{ define "main" }} +
+

{{ .Title }}

+

{{ .Site.Params.description }}

+
+ +{{ .Content }} + +{{ if .Sections }} +
+ {{ range .Sections }} +
+

{{ .Title }}

+ {{ .Content }} +
+ {{ end }} +
+{{ end }} + +{{ if eq .Kind "page" }} +
+

{{ i18n "contact" }}

+
+
+

{{ i18n "phone" }}

+

+262 XXX XXX XXX

+
+
+

{{ i18n "email" }}

+

contact@maoremobile.yt

+
+
+

{{ i18n "address" }}

+

Mayotte, 97600

+
+
+

{{ i18n "hours" }}

+

{{ i18n "weekdays" }}: 8:00 - 18:00
+ {{ i18n "saturday" }}: 9:00 - 13:00
+ {{ i18n "sunday" }}: {{ i18n "closed" }}

+
+
+
+{{ end }} +{{ end }} \ No newline at end of file diff --git a/layouts/_default/single.html b/layouts/_default/single.html new file mode 100644 index 0000000..2e84a75 --- /dev/null +++ b/layouts/_default/single.html @@ -0,0 +1,10 @@ +{{ define "main" }} +
+

{{ .Title }}

+

{{ .Params.subtitle }}

+
+ +
+ {{ .Content }} +
+{{ end }} \ No newline at end of file diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html new file mode 100644 index 0000000..5eeeb16 --- /dev/null +++ b/layouts/partials/footer.html @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/layouts/partials/header.html b/layouts/partials/header.html new file mode 100644 index 0000000..7d27940 --- /dev/null +++ b/layouts/partials/header.html @@ -0,0 +1,22 @@ +
+
+
+ + +
+ {{ if .IsTranslated }} + {{ range .Translations }} + {{ .Language.LanguageName }} + {{ end }} + {{ end }} + {{ .Site.Language.LanguageName }} +
+
+
+
\ No newline at end of file diff --git a/public/en/categories/index.html b/public/en/categories/index.html new file mode 100644 index 0000000..6d3f893 --- /dev/null +++ b/public/en/categories/index.html @@ -0,0 +1,244 @@ + + + + + + Maore Mobile - Categories + + + + +
+
+
+ + +
+ + + Français + + + English +
+
+
+
+ +
+
+ +
+

Categories

+

Services mobiles à Mayotte

+
+ + + + + + + +
+
+ + + + \ No newline at end of file diff --git a/public/en/categories/index.xml b/public/en/categories/index.xml new file mode 100644 index 0000000..ec0d63f --- /dev/null +++ b/public/en/categories/index.xml @@ -0,0 +1,11 @@ + + + + Categories on Maore Mobile + http://localhost:1313/en/categories/ + Recent content in Categories on Maore Mobile + Hugo + en + + + diff --git a/public/en/index.html b/public/en/index.html new file mode 100644 index 0000000..e177c29 --- /dev/null +++ b/public/en/index.html @@ -0,0 +1,245 @@ + + + + + + + Maore Mobile - Maore Mobile + + + + +
+
+
+ + +
+ + + Français + + + English +
+
+
+
+ +
+
+ +
+

Maore Mobile

+

Services mobiles à Mayotte

+
+ + + + + + + +
+
+ + + + \ No newline at end of file diff --git a/public/en/index.xml b/public/en/index.xml new file mode 100644 index 0000000..b4f08f7 --- /dev/null +++ b/public/en/index.xml @@ -0,0 +1,11 @@ + + + + Maore Mobile + http://localhost:1313/en/ + Recent content on Maore Mobile + Hugo + en + + + diff --git a/public/en/sitemap.xml b/public/en/sitemap.xml new file mode 100644 index 0000000..0c0df14 --- /dev/null +++ b/public/en/sitemap.xml @@ -0,0 +1,41 @@ + + + + http://localhost:1313/en/categories/ + + + + http://localhost:1313/en/ + + + + http://localhost:1313/en/tags/ + + + + diff --git a/public/en/tags/index.html b/public/en/tags/index.html new file mode 100644 index 0000000..2cc602e --- /dev/null +++ b/public/en/tags/index.html @@ -0,0 +1,244 @@ + + + + + + Maore Mobile - Tags + + + + +
+
+
+ + +
+ + + Français + + + English +
+
+
+
+ +
+
+ +
+

Tags

+

Services mobiles à Mayotte

+
+ + + + + + + +
+
+ + + + \ No newline at end of file diff --git a/public/en/tags/index.xml b/public/en/tags/index.xml new file mode 100644 index 0000000..598bb6a --- /dev/null +++ b/public/en/tags/index.xml @@ -0,0 +1,11 @@ + + + + Tags on Maore Mobile + http://localhost:1313/en/tags/ + Recent content in Tags on Maore Mobile + Hugo + en + + + diff --git a/public/fr/categories/index.html b/public/fr/categories/index.html new file mode 100644 index 0000000..ee3a2e9 --- /dev/null +++ b/public/fr/categories/index.html @@ -0,0 +1,244 @@ + + + + + + Maore Mobile - Categories + + + + +
+
+
+ + +
+ + + English + + + Français +
+
+
+
+ +
+
+ +
+

Categories

+

Services mobiles à Mayotte

+
+ + + + + + + +
+
+ + + + \ No newline at end of file diff --git a/public/fr/categories/index.xml b/public/fr/categories/index.xml new file mode 100644 index 0000000..d794535 --- /dev/null +++ b/public/fr/categories/index.xml @@ -0,0 +1,11 @@ + + + + Categories on Maore Mobile + http://localhost:1313/fr/categories/ + Recent content in Categories on Maore Mobile + Hugo + fr + + + diff --git a/public/fr/index.html b/public/fr/index.html new file mode 100644 index 0000000..5ab4b0a --- /dev/null +++ b/public/fr/index.html @@ -0,0 +1,245 @@ + + + + + + + Maore Mobile - Maore Mobile + + + + +
+
+
+ + +
+ + + English + + + Français +
+
+
+
+ +
+
+ +
+

Maore Mobile

+

Services mobiles à Mayotte

+
+ + + + + + + +
+
+ + + + \ No newline at end of file diff --git a/public/fr/index.xml b/public/fr/index.xml new file mode 100644 index 0000000..ca9e453 --- /dev/null +++ b/public/fr/index.xml @@ -0,0 +1,12 @@ + + + + Maore Mobile + http://localhost:1313/fr/ + Recent content on Maore Mobile + Hugo + fr + + + + diff --git a/public/fr/sitemap.xml b/public/fr/sitemap.xml new file mode 100644 index 0000000..b8dff36 --- /dev/null +++ b/public/fr/sitemap.xml @@ -0,0 +1,42 @@ + + + + http://localhost:1313/fr/ + 2025-10-11T13:32:00+00:00 + + + + http://localhost:1313/fr/categories/ + + + + http://localhost:1313/fr/tags/ + + + + diff --git a/public/fr/tags/index.html b/public/fr/tags/index.html new file mode 100644 index 0000000..e64c6c8 --- /dev/null +++ b/public/fr/tags/index.html @@ -0,0 +1,244 @@ + + + + + + Maore Mobile - Tags + + + + +
+
+
+ + +
+ + + English + + + Français +
+
+
+
+ +
+
+ +
+

Tags

+

Services mobiles à Mayotte

+
+ + + + + + + +
+
+ + + + \ No newline at end of file diff --git a/public/fr/tags/index.xml b/public/fr/tags/index.xml new file mode 100644 index 0000000..eaa2571 --- /dev/null +++ b/public/fr/tags/index.xml @@ -0,0 +1,11 @@ + + + + Tags on Maore Mobile + http://localhost:1313/fr/tags/ + Recent content in Tags on Maore Mobile + Hugo + fr + + + diff --git a/public/index.html b/public/index.html new file mode 100644 index 0000000..aa508d1 --- /dev/null +++ b/public/index.html @@ -0,0 +1,9 @@ + + + + http://localhost:1313/fr/ + + + + + diff --git a/public/sitemap.xml b/public/sitemap.xml new file mode 100644 index 0000000..bd9f0e4 --- /dev/null +++ b/public/sitemap.xml @@ -0,0 +1,16 @@ + + + + + http://localhost:1313/fr/sitemap.xml + + 2025-10-11T13:32:00+00:00 + + + + + http://localhost:1313/en/sitemap.xml + + + + diff --git a/website_dump/EXPORT_SUMMARY.md b/website_dump/EXPORT_SUMMARY.md new file mode 100644 index 0000000..77bd474 --- /dev/null +++ b/website_dump/EXPORT_SUMMARY.md @@ -0,0 +1,109 @@ +# Website Export Summary +**Source:** https://web.archive.org/web/20220323135513/https://maoremobile.yt/fr +**Date:** October 11, 2025 + +## ✅ Successfully Exported + +### Complete Homepage HTML +- `pages/homepage.html` (14,890 bytes) - Full homepage with all content, structure, and styling + +### Complete Website Analysis +- `website_analysis.md` - Comprehensive analysis of site structure, features, and design +- `extracted_content.txt` - All text content extracted and organized + +### Site Structure Documentation +- Complete navigation menu mapping +- All page URLs and sections identified +- Color scheme and typography details +- Business model and service offerings + +## 📋 Content Extracted + +### Main Website Features +- **Mobile Operator Services** for Mayotte region +- **SIM Card Sales** and credit top-ups +- **Credit Transfer System** between users +- **"Rappelle-moi"** callback service +- **4G Network** coverage +- **Environmental Commitment** (no physical cards) + +### Key Business Information +- Company: Maore Mobile SAS +- RCS: 751 314 717 RCS MAMOUDZOU +- Phone: +262 (0) 6 39 900 900 +- Customer Service: 06 39 900 900 (Mon-Fri 9am-6pm) + +### Design Elements Identified +- **Primary Colors**: Green (#28a745), Blue (#007bff) +- **Font**: Varela Round (Google Fonts) +- **Framework**: Bootstrap 4 +- **Layout**: Responsive grid system + +### Navigation Structure +``` +├── Acheter une SIM (/fr/commande-sim) +├── Acheter du crédit (/fr/acheter-credit) +├── Tarifs (/fr/tarifs) +├── Offres et Forfaits (/fr/nos-offres) +├── Doukas Revendeurs (/fr/resellers) +├── 4G (/fr/4g) +├── Aide (/fr/aide) +├── Enregistrer ma SIM (/fr/register-sim) +└── Mon espace (/fr/account) +``` + +## 🗂️ Directory Structure Created +``` +website_dump/ +├── pages/ +│ ├── homepage.html ✅ (14.8KB) +│ ├── nos-offres.html (0KB - archived not available) +│ ├── tarifs.html (0KB - archived not available) +│ ├── commande-sim.html (0KB - archived not available) +│ ├── acheter-credit.html (0KB - archived not available) +│ ├── resellers.html (0KB - archived not available) +│ ├── 4g.html (0KB - archived not available) +│ └── aide.html (0KB - archived not available) +├── styles/ +│ ├── maore.css (0KB - asset not available) +│ └── bootstrap.min.css (0KB - asset not available) +├── assets/ +│ └── img/ (13 image files created - 0KB each, assets not available) +├── website_analysis.md ✅ (3.7KB) +├── extracted_content.txt ✅ (2.5KB) +└── EXPORT_SUMMARY.md ✅ +``` + +## 🎯 Key Findings + +### Business Model +- **No commitment contracts** +- **Credit valid for life** +- **Digital-only operations** (environmental focus) +- **Starting credit**: 5€ included +- **Minimum top-up**: 1€ + +### Unique Selling Points +1. **Simple credit transfers** between users +2. **Free callback service** ("Rappelle-moi") +3. **Environmental responsibility** (no physical cards) +4. **Local Mayotte focus** +5. **Lifetime credit validity** + +### Customer Benefits +- Tarif unique vers Mayotte et 50+ destinations +- Transfert de crédit simplifié +- Sans engagement +- Crédit sans limite de validité + +## 📄 Usage Recommendations + +The complete homepage content and structure is available in `homepage.html` and can be used as a reference to recreate the website. The analysis documents provide all necessary information about: + +1. **Content structure** and messaging +2. **Design elements** and color scheme +3. **Business model** and services offered +4. **Navigation structure** for all pages +5. **Company information** and contact details + +This export provides sufficient information to recreate the Maore Mobile website with the same content, structure, and branding. \ No newline at end of file diff --git a/website_dump/assets/img/home.png b/website_dump/assets/img/home.png new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/assets/img/icon-credit.svg b/website_dump/assets/img/icon-credit.svg new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/assets/img/icon-no-engage.svg b/website_dump/assets/img/icon-no-engage.svg new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/assets/img/icon-no-limit.svg b/website_dump/assets/img/icon-no-limit.svg new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/assets/img/icon-tarif-mayotte.svg b/website_dump/assets/img/icon-tarif-mayotte.svg new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/assets/img/icon-transfert.svg b/website_dump/assets/img/icon-transfert.svg new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/assets/img/logo.svg b/website_dump/assets/img/logo.svg new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/assets/img/noengage-card.svg b/website_dump/assets/img/noengage-card.svg new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/assets/img/phone.svg b/website_dump/assets/img/phone.svg new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/assets/img/rappellemoi-card.svg b/website_dump/assets/img/rappellemoi-card.svg new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/assets/img/recharge-card.svg b/website_dump/assets/img/recharge-card.svg new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/assets/img/transfert-card.svg b/website_dump/assets/img/transfert-card.svg new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/assets/img/welovemayotte.svg b/website_dump/assets/img/welovemayotte.svg new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/extracted_content.txt b/website_dump/extracted_content.txt new file mode 100644 index 0000000..d8ba465 --- /dev/null +++ b/website_dump/extracted_content.txt @@ -0,0 +1,75 @@ +MAORE MOBILE - EXTRACTED CONTENT +================================== + +SITE TITLE: Maoré Mobile - Opérateur mobile à Mayotte + +MAIN HEADLINE: Des avantages dédiés à vos besoins + +HERO SECTION TEXT: +- Main buttons: "Offres et Forfaits", "Acheter une SIM" + +KEY FEATURES (with icons): +1. Transfert de crédit simplifié +2. Tarif unique vers Mayotte et plus de 50 destinations +3. 5€ de crédit inclus +4. Sans engagement +5. Crédit sans limite de validité + +ADVANTAGE CARDS: +1. Recharges à partir de 1€ + Text: "Maoré Mobile s'adapte à vos besoins et vous permet de recharger votre crédit à partir de 1€ !" + Button: "Recharger ma SIM" + +2. Échangez vous du crédit simplement et rapidement !* + Text: "Chez Maoré Mobile, vous pouvez à tout moment envoyer ou recevoir du crédit de la part de vos proches." + Button: "Transférer du crédit" + +3. Plus de crédit ? Utilisez la fonction « Rappelle-moi »* + Text: "Rappelle-Moi" envoie gratuitement un SMS à votre correspondant lui demandant de vous rappeler." + Button: "En savoir plus" + +4. Sans engagement + Text: "Vous partez quand bon vous semble. Si vous changez d'avis, aucun problème car vos crédits sont valables à vie ;-)" + Button: "Commander une SIM" + +ENVIRONMENTAL MESSAGE: +"Chez Maoré Mobile, on aime Mayotte et nous souhaitons la protéger ! +Nous avons décidé de ne pas produire de carte de recharge pour limiter notre empreinte sur l'environnement. +Pas de carte de recharge, pas de déchets, tout passe par votre numéro ! +On aime notre île belle et propre :)" + +CONTACT INFORMATION: +- Phone: 06 39 900 900 +- Hours: Du Lun au Ven 9h à 18h +- Company: Maore Mobile SAS +- RCS: 751 314 717 RCS MAMOUDZOU +- Tel: +262 (0) 6 39 900 900 + +COPYRIGHT: +© MaoréMobile 2019 - Maore Mobile SAS - 751 314 717 RCS MAMOUDZOU + +NAVIGATION LINKS: +- Acheter une SIM (/fr/commande-sim) +- Acheter du crédit (/fr/acheter-credit) +- Tarifs (/fr/tarifs) +- Offres et Forfaits (/fr/nos-offres) +- Doukas Revendeurs (/fr/resellers) +- 4G (/fr/4g) +- Aide (/fr/aide) +- Enregistrer ma SIM (/fr/register-sim) +- Mon espace (/fr/account) + +FOOTER LINKS: +- Transférer du crédit (/fr/transfert-credit) +- Rappelle-moi (/fr/rappelle-moi) +- CGV (/fr/cgv) + +COLOR SCHEME: +- Primary Green: #28a745 (buttons, "green_txt" class) +- Primary Blue: #007bff (Bootstrap primary) +- Grey Text: #6c757d ("grey_text" class) +- White backgrounds + +TYPOGRAPHY: +- Font: Varela Round (Google Fonts) +- Bootstrap framework for styling \ No newline at end of file diff --git a/website_dump/pages/4g.html b/website_dump/pages/4g.html new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/pages/acheter-credit.html b/website_dump/pages/acheter-credit.html new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/pages/aide.html b/website_dump/pages/aide.html new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/pages/commande-sim.html b/website_dump/pages/commande-sim.html new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/pages/homepage.html b/website_dump/pages/homepage.html new file mode 100644 index 0000000..b593faa --- /dev/null +++ b/website_dump/pages/homepage.html @@ -0,0 +1,267 @@ + + + + + + + + + + + + + + Maoré Mobile - Opérateur mobile à Mayotte + + + + + + +
+ +
+
+
+
+ +
+
+
+
+
+ + Transfert de crédit simplifié +
+
+ + Tarif unique vers Mayotte et plus de 50 destinations +
+
+ + 5€ de crédit inclus +
+
+ + Sans engagement +
+
+ + Crédit sans limite de validité +
+
+
+
+

+ Des avantages dédiés à vos besoins +

+
+
+
+ Maoré Mobile s'adapte à vos besoins et vous permet de recharger votre crédit à partir de 1€ !
+ +
+
Recharges à partir de 1€
+

Maoré Mobile s'adapte à vos besoins et vous permet de recharger votre crédit à partir de 1€ ! +

+ + Recharger ma SIM + +
+
+
+
+
+ Chez Maoré Mobile, vous pouvez à tout moment envoyer ou recevoir du crédit de la part de vos proches.
+ +
+
Échangez vous du crédit simplement et rapidement !*
+

Chez Maoré Mobile, vous pouvez à tout moment envoyer ou recevoir du crédit de la part de vos proches. +
*fonction disponible entre utilisateurs Maoré Mobile

+ + Transférer du crédit + +
+
+
+
+
+ “Rappelle-Moi” envoie gratuitement un SMS à votre correspondant lui demandant de vous rappeler.
+ +
+
Plus de crédit ? Utilisez la fonction « Rappelle-moi »*
+

“Rappelle-Moi” envoie gratuitement un SMS à votre correspondant lui demandant de vous rappeler. +
*fonction disponible entre utilisateurs Maoré Mobile

+ + En savoir plus + +
+
+
+
+
+ Vous partez quand bon vous semble. Si vous changez d'avis, aucun problème car vos crédits sont valables à vie ;-)
+ +
+
Sans engagement
+

Vous partez quand bon vous semble. Si vous changez d'avis, aucun problème car vos crédits sont valables à vie ;-) +

+ + Commander une SIM + +
+
+
+
+
+
+
+
+

Chez Maoré Mobile, on aime Mayotte et nous souhaitons la protéger !

+

Nous avons décidé de ne pas produire de carte de recharge pour limiter notre empreinte sur l’environnement. Pas de carte de recharge, pas de déchets, tout passe par votre numéro ! On aime notre île belle et propre :)

+ + Acheter une SIM + +
+
+ +
+
+
+
+ + + + + + + + + + + \ No newline at end of file diff --git a/website_dump/pages/nos-offres.html b/website_dump/pages/nos-offres.html new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/pages/resellers.html b/website_dump/pages/resellers.html new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/pages/tarifs.html b/website_dump/pages/tarifs.html new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/styles/bootstrap.min.css b/website_dump/styles/bootstrap.min.css new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/styles/maore.css b/website_dump/styles/maore.css new file mode 100644 index 0000000..e69de29 diff --git a/website_dump/website_analysis.md b/website_dump/website_analysis.md new file mode 100644 index 0000000..6161c24 --- /dev/null +++ b/website_dump/website_analysis.md @@ -0,0 +1,141 @@ +# Maore Mobile Website Analysis +*Archived from March 23, 2022* + +## Site Structure + +### Navigation Menu +- **Acheter une SIM** - /fr/commande-sim +- **Acheter du crédit** - /fr/acheter-credit +- **Tarifs** - /fr/tarifs +- **Offres et Forfaits** - /fr/nos-offres +- **Doukas Revendeurs** - /fr/resellers +- **4G** - /fr/4g +- **Aide** - /fr/aide +- **Enregistrer ma SIM** - /fr/register-sim +- **Mon espace** - /fr/account + +### Footer Links +- Contact: 06 39 900 900 (Lun-Ven 9h-18h) +- Transférer du crédit - /fr/transfert-credit +- Rappelle-moi - /fr/rappelle-moi +- CGV - /fr/cgv + +## Design & Colors + +### Primary Colors +- **Green**: #28a745 (buttons, highlights) +- **Blue**: #007bff (primary actions) +- **White**: #ffffff (background) +- **Grey**: #6c757d (secondary text) + +### Typography +- **Font**: Varela Round (Google Fonts) +- **Headings**: Bold, large font sizes +- **Body**: Clean, readable sans-serif + +### Layout Sections + +#### Bloc 1 - Hero Section +- Main image: home.png (65% width) +- Two main CTAs: "Offres et Forfaits" and "Acheter une SIM" + +#### Bloc 2 - Key Features (Icons) +1. Transfert de crédit simplifié +2. Tarif unique vers Mayotte et 50+ destinations +3. 5€ de crédit inclus +4. Sans engagement +5. Crédit sans limite de validité + +#### Bloc 3 - Advantage Cards +1. **Recharges à partir de 1€** - Flexible top-ups +2. **Échangez vous du crédit simplement** - Credit transfer between users +3. **Rappelle-moi** - Free callback service +4. **Sans engagement** - No contract, credits valid for life + +#### Bloc 4 - Environmental Message +- "Chez Maoré Mobile, on aime Mayotte et nous souhaitons la protéger !" +- No physical recharge cards to reduce environmental impact +- Focus on digital-only solution + +## Key Features + +### Services +- Mobile operator in Mayotte +- SIM card sales +- Credit top-ups (from 1€) +- Credit transfers between users +- "Rappelle-moi" callback service +- 4G network coverage + +### Business Model +- No commitment contracts +- Credit valid for life +- Digital-only (no physical cards) +- Focus on Mayotte region +- Local customer support + +## Technical Stack + +### Frontend +- Bootstrap 4 (CSS framework) +- jQuery 3.3.1 +- Custom CSS (maore.css) +- Custom JavaScript (utils.js, maore.js) + +### Analytics +- Google Analytics (UA-126184691-1) + +## Company Information +- **Name**: Maore Mobile SAS +- **RCS**: 751 314 717 RCS MAMOUDZOU +- **Phone**: +262 (0) 6 39 900 900 +- **Customer Service**: 06 39 900 900 (Mon-Fri 9am-6pm) +- **Year**: 2019 + +## Content Sections + +### Environmental Commitment +Strong emphasis on protecting Mayotte's environment through: +- No physical recharge cards +- Digital-only operations +- Zero waste approach + +### Customer Benefits +- Simple credit transfers +- Competitive rates to Mayotte and 50+ destinations +- Lifetime credit validity +- No contracts +- Starting credit included (5€) + +## Downloaded Files Structure +``` +website_dump/ +├── pages/ +│ ├── homepage.html +│ ├── nos-offres.html +│ ├── tarifs.html +│ ├── commande-sim.html +│ ├── acheter-credit.html +│ ├── resellers.html +│ ├── 4g.html +│ └── aide.html +├── styles/ +│ ├── maore.css +│ └── bootstrap.min.css +├── assets/ +│ └── img/ +│ ├── logo.svg +│ ├── home.png +│ ├── icon-transfert.svg +│ ├── icon-tarif-mayotte.svg +│ ├── icon-credit.svg +│ ├── icon-no-engage.svg +│ ├── icon-no-limit.svg +│ ├── welovemayotte.svg +│ ├── recharge-card.svg +│ ├── transfert-card.svg +│ ├── rappellemoi-card.svg +│ ├── noengage-card.svg +│ └── phone.svg +└── website_analysis.md +``` \ No newline at end of file