Sitemap.
Every node, indexed.
▸ Pages
2
▸ Section anchors
11
▸ Schema entities
7
▸ Languages
3+ x-default
▸ 02 / Section anchors
07 landmarks
▸ 03 / Project anchors
05 orbits
▸ 04 / Crawler files
05 endpoints
▸ 05 / Structured data
07 JSON-LD
- Person — primary entity
- WebSite + SearchAction
- WebPage
- BreadcrumbList
- ProfessionalService
- ItemList — projects
- FAQPage
▸ 06 / Locales
03 + x-default
- / — English (en)
- /fr/ — Français (fr) planned
- /ar/ — العربية (ar) planned
- x-default → /
▸ 07 / Assets
06 files
- styles.css — typography & layout
- three-scene.js — hero constellation
- skills-sphere.js — 3D tech sphere
- solar-system.js — projects orbit
- favicon.svg — brand mark
- og-cover.png — social preview
▸ 08 / Outbound
04 profiles
▸ 09 / Author
SM
- Saifeddine Makhlouf
- Lead Full-Stack Developer
- Tunis, Tunisia · UTC+1
- Languages: AR · FR · EN
- /humans.txt
saifeddine.tech/ ├── Portfolio.html # priority 1.0 · weekly │ ├── #hero │ ├── #about │ ├── #skills │ ├── #experience │ │ ├── YOTSYSTEM (current) │ │ ├── IEEE ISET Djerba │ │ ├── Freelance · Upwork/Fiverr │ │ ├── IEEE IAS Chapter │ │ ├── TOPNET (intern) │ │ └── Info Pro Digital (intern) │ ├── #projects │ │ ├── #calliverse → Play Store · React Native │ │ ├── #blink-delivery → Play Store · React Native │ │ ├── #craftgent → AI SaaS · OpenAI │ │ ├── #juliabot → Enterprise · Next.js + NestJS │ │ └── #acte → FinTech · WIP │ ├── #education │ └── #contact │ ├── sitemap.html # this page ├── sitemap.xml # 14 URLs · sitemaps.org/0.9 ├── robots.txt # crawl rules + bot policy ├── manifest.webmanifest # PWA · standalone · #05070d ├── feed.xml # RSS 2.0 · 4 items ├── humans.txt # the team behind the site ├── favicon.svg # vector · scalable any size ├── browserconfig.xml # MS Tile metadata ├── og-cover.png # 1200×630 · social preview │ ├── .well-known/ │ └── security.txt # RFC 9116 disclosure policy │ └── assets/ ├── styles.css # tokens + layout ├── three-scene.js # hero constellation ├── skills-sphere.js # 3D tag sphere └── solar-system.js # planet orbits
▸ /sitemap.xml — first entries (raw)
<?xml version="1.0" encoding="UTF-8"?> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1"> <url> <loc>https://saifeddine.tech/</loc> <lastmod>2026-04-25</lastmod> <changefreq>weekly</changefreq> <priority>1.0</priority> <xhtml:link rel="alternate" hreflang="en" href="…/"/> <xhtml:link rel="alternate" hreflang="fr" href="…/fr/"/> <xhtml:link rel="alternate" hreflang="ar" href="…/ar/"/> <image:image> <image:loc>…/og-cover.png</image:loc> <image:title>Saifeddine Makhlouf — Lead Full-Stack Developer</image:title> </image:image> </url> <!-- + 13 more URLs (section + project anchors, aux pages) --> </urlset>