This repository contains the official website for Traceloop AI, hosted on GitHub Pages.
- Main Site: traceloop-ai.dev
- Developer Resources: traceloop-ai.io
- AI Community: traceloop-ai.ai
Traceloop is a local-first observability platform for AI agents. Monitor, debug, and improve your LLM applications with confidence while keeping your data completely private and local.
- 🔍 Complete Trace Visibility - See every LLM call, tool use, and decision
- 🔒 Local-First Privacy - Your data never leaves your machine
- ⚡ Zero Latency - No network calls for tracing
- 🔧 Framework Agnostic - Works with LangChain, CrewAI, OpenAI, and more
- 📊 Real-time Dashboard - Beautiful web interface for trace visualization
- 🚀 Production Ready - From local development to cloud deployment
traceloop-website/
├── index.html # Main landing page
├── styles.css # CSS styling and responsive design
├── 404.html # Custom 404 error page
├── CNAME # GitHub Pages custom domain configuration
├── .gitignore # Git ignore rules
└── README.md # This file
- A modern web browser
- A local web server (optional, for testing)
-
Clone the repository
git clone https://github.com/traceloop-ai/traceloop-website.git cd traceloop-website
-
Open in browser
# Option 1: Direct file opening open index.html # Option 2: Using Python's built-in server python -m http.server 8000 # Then visit http://localhost:8000 # Option 3: Using Node.js serve npx serve .
-
Make changes
- Edit
index.html
for content changes - Edit
styles.css
for styling changes - Test locally before pushing
- Edit
This website is automatically deployed to GitHub Pages when changes are pushed to the main
branch.
-
Commit your changes
git add . git commit -m "Update website content" git push origin main
-
GitHub Pages will automatically build and deploy
- Visit your repository settings
- Go to Pages section
- Ensure source is set to "Deploy from a branch"
- Select "main" branch and "/ (root)" folder
The website is configured to use the custom domain traceloop-ai.dev
:
- CNAME file - Contains the custom domain
- DNS Configuration - Point your domain to GitHub Pages
- SSL Certificate - Automatically provided by GitHub Pages
- Primary Blue:
#2563eb
- Purple Gradient:
#7c3aed
- Text Dark:
#1a1a1a
- Text Gray:
#666
- Background:
#ffffff
- Light Background:
#f8fafc
- Font Family: Inter (Google Fonts)
- Headings: 600 weight
- Body Text: 400 weight
- Code: Monaco, Menlo, Ubuntu Mono
- Buttons: Primary (blue) and Secondary (outline)
- Cards: Rounded corners with subtle shadows
- Code Blocks: Dark theme with syntax highlighting
- Navigation: Fixed header with backdrop blur
The website is fully responsive and optimized for:
- Desktop: 1200px+ (full layout)
- Tablet: 768px - 1199px (adjusted grid)
- Mobile: < 768px (stacked layout)
- Add HTML structure to
index.html
- Add corresponding CSS to
styles.css
- Update navigation links if needed
- Edit the relevant sections in
index.html
- Update any hardcoded values
- Test locally before deploying
- Modify
styles.css
- Use the existing design system
- Ensure responsive behavior
- Test across different screen sizes
The website includes:
- Performance monitoring via GitHub Pages
- Custom 404 page for better user experience
- SEO optimization with proper meta tags
- Accessibility features for screen readers
We welcome contributions to improve the website!
- Fork the repository
- Create a feature branch
git checkout -b feature/amazing-improvement
- Make your changes
- Test locally
- Commit your changes
git commit -m "Add amazing improvement"
- Push to your fork
git push origin feature/amazing-improvement
- Open a Pull Request
- Follow the existing design system
- Ensure responsive design
- Test across different browsers
- Keep the code clean and well-commented
- Update documentation as needed
- Website Issues: GitHub Issues
- Traceloop Project: Main Repository
- Documentation: traceloop-ai.dev
This website is part of the Traceloop AI project and is licensed under the Apache License 2.0. See the main repository for details.
Built with ❤️ for the AI community