The official website and documentation for AI Conversation Analyzer.
| Page | Description |
|---|---|
| Home | Landing page with hero, features, how it works, screenshots, and community |
| Features | Detailed breakdown of every capability |
| Docs | Documentation with sidebar navigation — getting started, config, API reference, FAQ |
| Community | Community links, contribution guide, code of conduct |
| Contribution | Step-by-step guide for contributors |
| Changelog | Release history and upcoming changes |
| Roadmap | Project roadmap organized by phases |
| About | Mission, values, and team |
| 404 | Friendly error page |
- Vanilla HTML / CSS / JavaScript
- Inter + JetBrains Mono fonts
- Font Awesome 6.7.2 icons
- Zero build step, zero dependencies
git clone https://github.com/Conversation-analyzer/conversation-analyzer.github.io.git
cd conversation-analyzer.github.io
python -m http.server 8080
# Open http://localhost:8080├── index.html # Home / landing page
├── features.html # Features detail page
├── docs.html # Documentation shell
├── community.html # Community hub
├── contribution.html # Contribution guide
├── changelog.html # Release history
├── roadmap.html # Project roadmap
├── about.html # About the project
├── 404.html # Error page
├── .nojekyll # Disable Jekyll processing
├── css/
│ ├── tokens.css # Design tokens (CSS variables)
│ ├── base.css # Reset, typography, utilities
│ ├── background.css # Background effects
│ ├── navigation.css # Navbar styles
│ ├── components.css # Buttons, cards, badges, tags
│ ├── layout.css # Sections, grids, page header
│ ├── footer.css # Footer styles
│ ├── home.css # Hero, dashboard, features grid
│ ├── pages.css # Docs, changelog, roadmap, about, contribution
│ ├── animations.css # Scroll reveal, keyframes
│ └── responsive.css # Media queries
├── js/
│ ├── config.js # Site-wide URL configuration
│ ├── include.js # Partial loader & config resolver
│ ├── main.js # Scroll reveal, counters, rotating text
│ ├── markdown.js # Markdown-to-HTML renderer
│ └── docs.js # Docs sidebar, navigation, search
├── docs/
│ ├── sidebar.json # Docs navigation structure
│ ├── getting-started/
│ │ ├── installation.md
│ │ ├── quick-start.md
│ │ └── usage.md
│ ├── parsing/
│ │ ├── index.md
│ │ ├── formats.md
│ │ └── customization.md
│ ├── visualization/
│ │ ├── index.md
│ │ ├── dashboard.md
│ │ ├── charts.md
│ │ ├── search.md
│ │ ├── messages.md
│ │ └── media.md
│ ├── understanding-reports/
│ │ ├── index.md
│ │ ├── ai-patterns.md
│ │ ├── communication-styles.md
│ │ └── topics.md
│ ├── architecture/
│ │ ├── index.md
│ │ ├── components.md
│ │ ├── data-flow.md
│ │ └── tech-stack.md
│ ├── faq/
│ │ ├── index.md
│ │ └── troubleshooting.md
│ └── api/
│ ├── index.md
│ └── examples.md
├── partials/
│ ├── header.html # Background effects + navbar
│ └── footer.html # Footer section
├── LICENSE # MIT License
└── README.md
MIT