-
diff --git a/website/src/content.config.ts b/website/src/content.config.ts
index ee21da167..3c8b69d82 100644
--- a/website/src/content.config.ts
+++ b/website/src/content.config.ts
@@ -1,8 +1,38 @@
-import { defineCollection } from 'astro:content';
+import { defineCollection, z } from 'astro:content';
import { docsLoader } from '@astrojs/starlight/loaders';
import { docsSchema } from '@astrojs/starlight/schema';
import { videosSchema } from 'starlight-videos/schemas';
+const changelogSchema = z.object({
+ title: z.string(),
+ description: z.string(),
+ date: z.date(),
+ version: z.string().optional(),
+ image: z.string().optional(),
+ gif: z.string().optional(),
+ video: z.string().optional(),
+ featured: z.boolean().default(false),
+});
+
+const blogSchema = z.object({
+ title: z.string(),
+ description: z.string(),
+ date: z.date(),
+ tags: z.string().optional(),
+ categories: z.string().optional(),
+ author: z.string().optional(),
+ ogImage: z.string().optional(),
+ featured: z.boolean().default(false),
+});
+
export const collections = {
docs: defineCollection({ loader: docsLoader(), schema: docsSchema({ extend: videosSchema }) }),
+ changelog: defineCollection({
+ type: 'content',
+ schema: changelogSchema,
+ }),
+ blog: defineCollection({
+ type: 'content',
+ schema: blogSchema,
+ }),
};
diff --git a/website/src/content/blog/deepseek-r1-locally.mdx b/website/src/content/blog/deepseek-r1-locally.mdx
new file mode 100644
index 000000000..417116b40
--- /dev/null
+++ b/website/src/content/blog/deepseek-r1-locally.mdx
@@ -0,0 +1,81 @@
+---
+title: "Run DeepSeek R1 locally on your device"
+description: "A straightforward guide to running DeepSeek R1 locally regardless of your background."
+date: 2025-01-31
+tags: "DeepSeek, R1, local AI, Jan, GGUF, Qwen, Llama"
+categories: "guides"
+featured: true
+ogImage: "/assets/images/blog/deepseek-r1-locally-jan.jpg"
+---
+
+# Run DeepSeek R1 locally on your device
+
+DeepSeek R1 is one of the best open-source models in the market right now, and you can run DeepSeek R1 on your own computer!
+
+> **New to running AI models locally?** Check out our guide on running AI models locally first. It covers essential concepts that will help you better understand this DeepSeek R1 guide.
+
+DeepSeek R1 requires data-center level computers to run at its full potential, and we'll use a smaller version that works great on regular computers.
+
+## Why use an optimized version?
+- Efficient performance on standard hardware
+- Faster download and initialization
+- Optimized storage requirements
+- Maintains most of the original model's capabilities
+
+## Quick Steps at a Glance
+1. Download [Jan](https://jan.ai/)
+2. Select a model version
+3. Choose settings
+4. Set up the prompt template & start using DeepSeek R1
+
+Let's walk through each step with detailed instructions.
+
+## Step 1: Download Jan
+[Jan](https://jan.ai/) is an open-source application that enables you to run AI models locally. It's available for Windows, Mac, and Linux. For beginners, Jan is the best choice to get started.
+
+1. Visit [jan.ai](https://jan.ai)
+2. Download the appropriate version for your operating system
+3. Install the application following the standard installation process for your OS
+
+## Step 2: Choose Your DeepSeek R1 Model
+
+Once Jan is installed, you'll need to select which version of DeepSeek R1 to download. Different versions have different system requirements:
+
+- **DeepSeek R1 7B**: Good for most computers (8GB+ RAM recommended)
+- **DeepSeek R1 14B**: Better performance, needs more resources (16GB+ RAM)
+- **DeepSeek R1 32B**: Best performance, requires powerful hardware (32GB+ RAM)
+
+## Step 3: Configure Model Settings
+
+After downloading your chosen model, you can adjust settings to optimize performance:
+
+- **Context Length**: How much conversation history the model remembers
+- **Temperature**: Controls creativity vs consistency (0.1-1.0)
+- **Max Tokens**: Maximum response length
+
+## Step 4: Set Up DeepSeek R1 Prompt Template
+
+DeepSeek R1 works best with proper prompt formatting. Jan handles this automatically, but you can customize it for specific use cases.
+
+## Start Using DeepSeek R1
+
+Once everything is set up, you can start chatting with DeepSeek R1! The model excels at:
+
+- Code generation and debugging
+- Mathematical reasoning
+- Technical writing
+- Problem-solving
+- General conversation
+
+## Tips for Best Results
+
+1. **Be specific**: Clear, detailed prompts get better responses
+2. **Provide context**: Give the model relevant background information
+3. **Experiment**: Try different temperature settings for different tasks
+4. **Be patient**: Local models may take a moment to respond, especially on slower hardware
+
+## Conclusion
+
+Running DeepSeek R1 locally gives you powerful AI capabilities while maintaining complete privacy and control over your data. With Jan, the setup process is straightforward, and you can start experimenting with cutting-edge AI models in minutes.
+
+Ready to get started? [Download Jan](https://jan.ai/) and begin your local AI journey today!
\ No newline at end of file
diff --git a/website/src/content/blog/offline-chatgpt-alternative.mdx b/website/src/content/blog/offline-chatgpt-alternative.mdx
new file mode 100644
index 000000000..b20666bbc
--- /dev/null
+++ b/website/src/content/blog/offline-chatgpt-alternative.mdx
@@ -0,0 +1,115 @@
+---
+title: "Offline ChatGPT: You can't run ChatGPT offline, do this instead"
+description: "Learn how to use AI offline with Jan - a free, open-source alternative to ChatGPT that works 100% offline on your computer."
+date: 2025-02-08
+tags: "AI, ChatGPT alternative, offline AI, Jan, local AI, privacy"
+categories: "guides"
+featured: true
+ogImage: "/assets/images/blog/offline-chatgpt-alternatives-jan.jpg"
+---
+
+# Offline ChatGPT: You can't run ChatGPT offline, do this instead
+
+ChatGPT is a cloud-based service that requires internet access. However, it's not the only way to use AI. You can run AI models offline on your device with [Jan](https://jan.ai/). It's completely free, open-source, and gives you 100% offline capability. You can even use AI on a plane!
+
+> **Quick Summary:**
+> - ChatGPT always needs internet - it can't run offline
+> - Jan lets you run AI models 100% offline on your computer
+> - It's free and open-source
+> - Works on Mac, Windows, and Linux
+
+## Jan as an offline ChatGPT alternative
+
+Jan lets you use AI offline - no internet connection needed. Here's how to get started with offline AI in 3 simple steps:
+
+### 1. Download Jan
+
+Go to [jan.ai](https://jan.ai) and download the version for your computer (Mac, Windows, or Linux). It's completely free.
+
+### 2. Download an AI model
+
+You'll need an AI model to use AI offline, so download a model from Jan. Once it's on your computer, you don't need internet anymore.
+
+> **Recommended models for beginners:**
+> - Llama 3.2 3B: Fast and efficient, works on most computers
+> - Phi-3 Mini: Great balance of performance and resource usage
+> - Qwen2.5 7B: More capable, needs more RAM
+
+### 3. Start chatting offline
+
+Once your model is downloaded, you can use AI completely offline. No internet required!
+
+## Why choose Jan over ChatGPT for offline use?
+
+| Feature | ChatGPT | Jan |
+|---------|---------|-----|
+| **Offline capability** | β Requires internet | β 100% offline |
+| **Privacy** | β Data sent to OpenAI | β Everything stays local |
+| **Cost** | π° $20/month for Plus | β Completely free |
+| **Customization** | β Limited options | β Full control over models |
+| **Data ownership** | β OpenAI owns conversations | β You own everything |
+
+## What can you do with offline AI?
+
+With Jan running offline, you can:
+
+- **Write and edit documents** without sending data to the cloud
+- **Code and debug** while keeping your projects private
+- **Brainstorm ideas** without worrying about data collection
+- **Learn and research** with complete privacy
+- **Use AI on flights** or anywhere without internet
+
+## Common questions about offline AI
+
+### "Is offline AI as good as ChatGPT?"
+
+For many tasks, yes! While the largest online models might have slight advantages in some areas, offline models have improved dramatically. Plus, you get:
+- Complete privacy
+- No internet dependency
+- No monthly costs
+- Full customization control
+
+### "Will it work on my computer?"
+
+Jan works on most modern computers:
+- **Minimum**: 8GB RAM, 4GB free storage
+- **Recommended**: 16GB RAM, 10GB free storage
+- **Operating systems**: Windows 10+, macOS 10.15+, Linux
+
+### "How much storage do I need?"
+
+AI models vary in size:
+- Small models (3B parameters): 2-3GB
+- Medium models (7B parameters): 4-5GB
+- Large models (13B+ parameters): 8GB+
+
+## Getting started with your first offline AI model
+
+1. **Install Jan** from [jan.ai](https://jan.ai)
+2. **Browse the model library** and choose a model that fits your computer
+3. **Download your chosen model** (this happens once)
+4. **Start chatting** - completely offline!
+
+## Advanced tips for power users
+
+- **GPU acceleration**: If you have a graphics card, Jan can use it to run models faster
+- **Multiple models**: Download different models for different tasks
+- **Custom settings**: Adjust temperature, context length, and other parameters
+- **Import custom models**: Use models from Hugging Face and other sources
+
+## Privacy benefits of offline AI
+
+When you use Jan instead of cloud-based AI:
+- **No data collection**: Your conversations never leave your device
+- **No tracking**: No usage analytics or behavioral profiling
+- **No breaches**: Your data can't be hacked if it's not online
+- **No censorship**: Use AI without content restrictions
+- **No downtime**: Works even when services are down
+
+## Conclusion
+
+While you can't run ChatGPT offline, Jan provides an excellent alternative that works entirely on your computer. You get privacy, control, and zero ongoing costs - all while using powerful AI models.
+
+The best part? You can start using offline AI in just a few minutes.
+
+**Ready to try offline AI?** [Download Jan](https://jan.ai/) and experience the freedom of local AI models today!
\ No newline at end of file
diff --git a/website/src/content/changelog/2025-02-14-enterprise-security.mdx b/website/src/content/changelog/2025-02-14-enterprise-security.mdx
new file mode 100644
index 000000000..00d973bb2
--- /dev/null
+++ b/website/src/content/changelog/2025-02-14-enterprise-security.mdx
@@ -0,0 +1,134 @@
+---
+title: "Jan Enterprise: Security & Compliance"
+version: 0.6.2
+description: "Enterprise-grade security features, compliance tools, and team management capabilities"
+date: 2025-02-14
+image: "/assets/images/changelog/enterprise-security.png"
+featured: false
+---
+
+## Enterprise Ready π’
+
+Jan v0.6.2 introduces comprehensive enterprise features designed for organizations that need advanced security, compliance, and management capabilities. Deploy AI with confidence across your entire organization.
+
+### π Advanced Security Framework
+
+Military-grade security for your AI infrastructure:
+- **Zero-Trust Architecture**: Verify every request, trust nothing by default
+- **End-to-End Encryption**: Data encrypted in transit and at rest
+- **Certificate Management**: Full PKI support with automatic rotation
+- **Network Isolation**: Separate AI workloads from corporate networks
+- **Audit Logging**: Comprehensive logs for security analysis and compliance
+
+### π₯ Team Management
+
+Sophisticated user and access control:
+- **Role-Based Access**: Granular permissions for different user types
+- **Single Sign-On**: Integration with Active Directory, SAML, and OAuth
+- **Multi-Factor Authentication**: Required 2FA with hardware token support
+- **Session Management**: Control session duration and concurrent logins
+- **User Provisioning**: Automated user creation and deactivation
+
+### π Compliance Dashboard
+
+Meet regulatory requirements with confidence:
+- **SOC 2 Compliance**: Built-in controls for SOC 2 Type II certification
+- **GDPR Tools**: Data subject rights management and privacy controls
+- **HIPAA Ready**: Healthcare-specific security and privacy features
+- **ISO 27001**: Information security management system alignment
+- **Custom Frameworks**: Adapt to your specific compliance requirements
+
+### ποΈ Infrastructure Management
+
+Deploy and scale AI across your organization:
+- **Containerized Deployment**: Docker and Kubernetes ready
+- **Load Balancing**: Distribute AI workloads across multiple instances
+- **Auto-Scaling**: Automatically scale based on demand
+- **Health Monitoring**: Real-time system health and performance tracking
+- **Disaster Recovery**: Automated backups and failover capabilities
+
+### π― Data Governance
+
+Complete control over your data:
+- **Data Classification**: Automatically tag and classify sensitive information
+- **Retention Policies**: Automated data lifecycle management
+- **Data Loss Prevention**: Prevent sensitive data from leaving your environment
+- **Geographic Controls**: Control where data is processed and stored
+- **Right to Deletion**: Complete data removal on request
+
+### π Advanced Analytics
+
+Insights into AI usage across your organization:
+- **Usage Analytics**: Understand how teams use AI capabilities
+- **Cost Analysis**: Track AI costs by department, team, or user
+- **Performance Metrics**: Monitor AI performance and quality
+- **Adoption Reports**: Measure AI adoption across the organization
+- **Custom Dashboards**: Create reports tailored to your needs
+
+### π‘οΈ Threat Protection
+
+Advanced protection against AI-specific threats:
+- **Prompt Injection Detection**: Identify and block malicious prompts
+- **Content Filtering**: Prevent inappropriate content generation
+- **Rate Limiting**: Protect against abuse and resource exhaustion
+- **Anomaly Detection**: Identify unusual usage patterns
+- **Incident Response**: Automated response to security events
+
+### π Integration Capabilities
+
+Connect Jan to your existing enterprise systems:
+- **API Gateway**: Secure API access with rate limiting and authentication
+- **Webhook Support**: Real-time notifications to external systems
+- **Database Connections**: Direct integration with enterprise databases
+- **Workflow Integration**: Connect to existing business processes
+- **Custom Connectors**: Build integrations specific to your needs
+
+### π Policy Management
+
+Implement and enforce AI governance policies:
+- **Usage Policies**: Define acceptable use of AI capabilities
+- **Content Policies**: Control what types of content can be generated
+- **Model Policies**: Restrict access to specific AI models
+- **Data Policies**: Control how data is processed and stored
+- **Approval Workflows**: Require approval for sensitive operations
+
+### π§ Administrative Tools
+
+Powerful tools for IT administrators:
+- **Centralized Configuration**: Manage settings across all deployments
+- **Bulk Operations**: Perform actions across multiple users or systems
+- **Migration Tools**: Move data and settings between environments
+- **Backup Management**: Automated and manual backup capabilities
+- **System Diagnostics**: Comprehensive troubleshooting tools
+
+### π Enterprise Support
+
+Dedicated support for mission-critical deployments:
+- **24/7 Support**: Round-the-clock assistance for critical issues
+- **Dedicated Success Manager**: Personal point of contact for your organization
+- **Training Programs**: Comprehensive training for administrators and users
+- **Implementation Services**: Professional deployment and configuration
+- **Custom Development**: Tailored features for unique requirements
+
+## Deployment Options
+
+Choose the deployment model that fits your needs:
+- **On-Premises**: Complete control with on-site deployment
+- **Private Cloud**: Dedicated cloud environment just for you
+- **Hybrid**: Combine on-premises and cloud capabilities
+- **Multi-Region**: Deploy across multiple geographic regions
+- **Air-Gapped**: Completely isolated environments for maximum security
+
+## Getting Started
+
+Ready to deploy Jan Enterprise?
+
+1. **Assessment**: Our team evaluates your requirements
+2. **Pilot Program**: Start with a small-scale deployment
+3. **Training**: Comprehensive training for your team
+4. **Full Deployment**: Roll out to your entire organization
+5. **Ongoing Support**: Continuous support and optimization
+
+Transform how your organization uses AI. Contact our enterprise team to learn more.
+
+[Contact Enterprise Sales](mailto:enterprise@jan.ai) β’ [Enterprise Documentation](/docs/enterprise) β’ [Security Whitepaper](/security-whitepaper)
\ No newline at end of file
diff --git a/website/src/content/changelog/2025-03-05-ui-redesign.mdx b/website/src/content/changelog/2025-03-05-ui-redesign.mdx
new file mode 100644
index 000000000..fb47b7b21
--- /dev/null
+++ b/website/src/content/changelog/2025-03-05-ui-redesign.mdx
@@ -0,0 +1,122 @@
+---
+title: "Jan v0.6.3: UI Renaissance"
+version: 0.6.3
+description: "Complete interface redesign with improved UX, dark mode, and accessibility features"
+date: 2025-03-05
+image: "/assets/images/changelog/ui-redesign.png"
+featured: false
+---
+
+## A Beautiful New Beginning π¨
+
+Jan v0.6.3 introduces our most comprehensive UI overhaul yet. Every pixel has been reconsidered, every interaction refined. The result? A beautiful, intuitive interface that gets out of your way and lets you focus on what matters - conversations with AI.
+
+### π― Design Philosophy
+
+Our new design principles:
+- **Clarity First**: Remove visual noise, highlight what's important
+- **Consistent Language**: Unified design patterns throughout the app
+- **Accessibility Focus**: Usable by everyone, regardless of ability
+- **Performance Minded**: Beautiful interfaces that are also fast
+- **Future Ready**: Scalable design system for upcoming features
+
+### π Enhanced Dark Mode
+
+Dark mode, reimagined:
+- **True Black Option**: Perfect for OLED displays and low-light use
+- **Adaptive Contrast**: Automatically adjusts based on ambient light
+- **Custom Accent Colors**: Choose your preferred highlight color
+- **Smart Switching**: Follows system preferences or custom schedule
+- **Reduced Eye Strain**: Carefully calibrated colors for long usage sessions
+
+### π¬ Conversation Experience
+
+Completely redesigned chat interface:
+- **Improved Message Bubbles**: Better readability and visual hierarchy
+- **Smart Typography**: Optimal font sizes and spacing for every device
+- **Code Highlighting**: Syntax highlighting for 200+ programming languages
+- **Math Rendering**: Beautiful LaTeX math equation display
+- **Image Gallery**: Enhanced image viewing with zoom and navigation
+
+### ποΈ Settings Overhaul
+
+Settings that make sense:
+- **Organized Categories**: Logical grouping of related options
+- **Search Settings**: Find any setting instantly
+- **Visual Previews**: See changes before applying them
+- **Quick Actions**: Common tasks accessible with fewer clicks
+- **Import/Export**: Backup and restore your entire configuration
+
+### π± Responsive Design
+
+Perfect on every screen:
+- **Mobile Optimized**: Touch-friendly interface for tablets and phones
+- **Desktop Polish**: Take advantage of larger screens and precise input
+- **Window Management**: Better handling of multiple windows and panels
+- **Flexible Layouts**: Adapt to any screen size or orientation
+- **High DPI Support**: Crisp on retina and 4K displays
+
+### βΏ Accessibility Improvements
+
+Jan for everyone:
+- **Screen Reader Support**: Full compatibility with assistive technologies
+- **Keyboard Navigation**: Complete interface control without a mouse
+- **High Contrast Mode**: Enhanced visibility for low-vision users
+- **Font Scaling**: Respect system font size preferences
+- **Motion Controls**: Reduced motion options for sensitive users
+
+### π¨ Theming System
+
+Express your style:
+- **Built-in Themes**: 12 carefully crafted color schemes
+- **Custom Themes**: Create your own with our theme editor
+- **Theme Sharing**: Import themes created by the community
+- **Seasonal Themes**: Special themes for holidays and events
+- **Auto-Theming**: Themes that change based on time of day
+
+### π Improved Navigation
+
+Find everything faster:
+- **Global Search**: Search conversations, settings, and help instantly
+- **Breadcrumbs**: Always know where you are in the app
+- **Quick Switcher**: Jump between conversations with keyboard shortcuts
+- **Recent Items**: Quick access to your most-used features
+- **Favorites System**: Pin important conversations and tools
+
+### πͺ Animation & Transitions
+
+Delightful micro-interactions:
+- **Smooth Transitions**: Fluid movement between screens and states
+- **Loading Animations**: Engaging feedback during wait times
+- **Hover Effects**: Subtle responses to mouse interaction
+- **Focus Indicators**: Clear visual feedback for keyboard users
+- **Performance Optimized**: 60fps animations that don't drain battery
+
+### π Visual Data
+
+Information design that informs:
+- **Usage Charts**: Beautiful visualizations of your AI usage
+- **Performance Graphs**: Real-time system performance monitoring
+- **Progress Indicators**: Clear feedback for long-running operations
+- **Status Displays**: At-a-glance system health information
+- **Comparison Views**: Side-by-side analysis of models and settings
+
+### π Performance Improvements
+
+Beauty with brains:
+- **Faster Rendering**: 40% improvement in interface responsiveness
+- **Memory Efficiency**: Reduced RAM usage for smoother operation
+- **Bundle Optimization**: Smaller app size, faster loading
+- **Asset Loading**: Progressive loading for smoother startup
+- **Animation Performance**: Hardware-accelerated animations
+
+## Migration Guide
+
+Your existing data and settings are automatically preserved. Some visual elements may look different, but all functionality remains the same or improved.
+
+**New Users**: Welcome to the most beautiful Jan yet!
+**Existing Users**: Your themes and customizations will be migrated automatically.
+
+Experience the new Jan. Clean, beautiful, and more powerful than ever.
+
+[Download Jan v0.6.3](https://jan.ai/) β’ [UI Guide](/docs/interface) β’ [Accessibility Documentation](/docs/accessibility)
\ No newline at end of file
diff --git a/website/src/content/changelog/2025-04-10-mobile-launch.mdx b/website/src/content/changelog/2025-04-10-mobile-launch.mdx
new file mode 100644
index 000000000..1f75b15a9
--- /dev/null
+++ b/website/src/content/changelog/2025-04-10-mobile-launch.mdx
@@ -0,0 +1,119 @@
+---
+title: "Jan Mobile: AI in Your Pocket"
+version: 1.0.0
+description: "Introducing Jan Mobile - full-featured AI assistant for iOS and Android with cloud sync"
+date: 2025-04-10
+image: "/assets/images/changelog/jan-mobile.png"
+featured: true
+---
+
+## AI Goes Mobile π±
+
+After months of development, we're thrilled to announce Jan Mobile - bringing the full power of Jan's AI capabilities to your smartphone. Chat with AI anywhere, sync across devices, and never miss a conversation.
+
+### π± Native Mobile Experience
+
+Built from the ground up for mobile:
+- **Native Performance**: Smooth, responsive interface optimized for touch
+- **Offline Capable**: Continue conversations even without internet
+- **Battery Optimized**: Efficient background processing preserves battery life
+- **Dark Mode**: Beautiful dark theme that's easy on the eyes
+- **Haptic Feedback**: Tactile responses for better interaction
+
+### βοΈ Seamless Cloud Sync
+
+Your conversations follow you everywhere:
+- **Real-time Sync**: Conversations update instantly across all devices
+- **Conflict Resolution**: Smart merging when editing on multiple devices
+- **Selective Sync**: Choose which conversations to sync to mobile
+- **End-to-End Encryption**: Your data remains private and secure
+- **Offline Queue**: Messages sync when connection returns
+
+### π― Mobile-First Features
+
+Designed for how you use your phone:
+- **Voice Input**: Speak your messages instead of typing
+- **Voice Output**: AI responses read aloud with natural voices
+- **Quick Actions**: Swipe gestures for common tasks
+- **Share Integration**: Share content to Jan from any app
+- **Widget Support**: Quick access from your home screen
+
+### π Privacy & Security
+
+Your privacy, protected:
+- **Local Processing**: Sensitive conversations can stay on-device
+- **Biometric Lock**: Secure Jan with fingerprint or face recognition
+- **Auto-Lock**: Automatically locks after inactivity
+- **Private Mode**: Conversations that don't sync to cloud
+- **Data Controls**: Full control over what data is stored where
+
+### π€ Full Model Support
+
+Access all your favorite models:
+- **Cloud Models**: GPT-4, Claude, Gemini, and more
+- **Local Models**: Run smaller models directly on your phone
+- **Model Switching**: Change models mid-conversation
+- **Smart Routing**: Automatically choose the best model for your query
+- **Offline Models**: Basic AI capabilities without internet
+
+### πΈ Rich Media Support
+
+Beyond just text:
+- **Image Analysis**: Upload photos for AI to analyze and discuss
+- **Camera Integration**: Take photos directly in Jan for analysis
+- **Voice Messages**: Send and receive voice messages
+- **File Sharing**: Share documents, PDFs, and more
+- **Link Previews**: Rich previews for shared links
+
+### π¨ Personalization
+
+Make Jan your own:
+- **Custom Themes**: Choose colors and appearance
+- **Chat Backgrounds**: Personalize your conversation view
+- **Notification Settings**: Control when and how you're notified
+- **Assistant Personalities**: Different AI personalities for different contexts
+- **Quick Replies**: Set up common responses
+
+### π Cross-Platform Features
+
+Unified experience across desktop and mobile:
+- **Universal Search**: Find conversations across all devices
+- **Shared Assistants**: Use the same AI assistants everywhere
+- **Unified Settings**: Preferences sync between devices
+- **File Access**: Access files shared from desktop
+- **Continuous Conversations**: Start on desktop, continue on mobile
+
+### π Usage Analytics
+
+Understand your AI usage:
+- **Conversation Stats**: See your most active conversations
+- **Model Usage**: Track which models you use most
+- **Time Analytics**: Understand your usage patterns
+- **Export Data**: Download your conversation history
+- **Privacy Dashboard**: See exactly what data is stored
+
+### π Launch Features
+
+Available from day one:
+- **Free Tier**: Full functionality with generous usage limits
+- **Pro Features**: Enhanced models and advanced features
+- **Family Sharing**: Share Pro features with family members
+- **Student Discount**: Special pricing for students
+- **Enterprise Options**: Advanced security and management
+
+## Platform Availability
+
+- **iOS**: Available on the App Store (iOS 15.0+)
+- **Android**: Available on Google Play (Android 8.0+)
+- **Cross-Platform**: Full feature parity between platforms
+
+## Getting Started
+
+1. Download Jan Mobile from your app store
+2. Sign in with your Jan account (or create one)
+3. Your desktop conversations automatically appear
+4. Start chatting with AI on the go!
+
+Your AI assistant is now truly everywhere. Download Jan Mobile today and experience AI without boundaries.
+
+[Download for iOS](https://apps.apple.com/app/jan-ai) β’ [Download for Android](https://play.google.com/store/apps/jan) β’ [Mobile Guide](/docs/mobile)
\ No newline at end of file
diff --git a/website/src/content/changelog/2025-05-20-performance-boost.mdx b/website/src/content/changelog/2025-05-20-performance-boost.mdx
new file mode 100644
index 000000000..489bb8eea
--- /dev/null
+++ b/website/src/content/changelog/2025-05-20-performance-boost.mdx
@@ -0,0 +1,101 @@
+---
+title: "Jan v0.6.4: Performance Powerhouse"
+version: 0.6.4
+description: "Massive speed improvements, GPU optimization, and streamlined model management"
+date: 2025-05-20
+image: "/assets/images/changelog/performance-boost.png"
+featured: false
+---
+
+## Speed Like Never Before β‘
+
+Jan v0.6.4 delivers our biggest performance update yet. Models load faster, inference is smoother, and memory usage is dramatically reduced. This is the Jan you've been waiting for.
+
+### π Inference Speed Improvements
+
+Dramatic performance gains across the board:
+- **3x Faster Model Loading**: Optimized model initialization reduces wait times
+- **50% Faster Inference**: Improved CUDA kernels and memory management
+- **Instant Model Switching**: Switch between models with near-zero delay
+- **Background Preloading**: Frequently used models stay ready in memory
+- **Smart Caching**: Intelligent context caching reduces repeated work
+
+### π― GPU Optimization Revolution
+
+Completely rewritten GPU acceleration:
+- **Auto-GPU Detection**: Automatically finds and uses your best GPU
+- **Multi-GPU Support**: Distribute model layers across multiple GPUs
+- **Memory Optimization**: 40% reduction in VRAM usage
+- **Dynamic Offloading**: Automatically balance between GPU and CPU
+- **CUDA 12 Support**: Latest NVIDIA drivers and optimizations
+
+### π§ Smarter Memory Management
+
+Revolutionary memory handling:
+- **Adaptive Memory**: Automatically adjusts to available system memory
+- **Memory Pressure Detection**: Gracefully handles low-memory situations
+- **Efficient Model Unloading**: Frees memory when models aren't needed
+- **Context Length Optimization**: Handle longer conversations without slowdown
+- **Memory Usage Dashboard**: Real-time visibility into memory consumption
+
+### π± Startup Speed Breakthrough
+
+Jan now starts in seconds, not minutes:
+- **Cold Start Optimization**: 5x faster first launch
+- **Background Services**: Core services start in parallel
+- **Lazy Loading**: Only load components when needed
+- **Configuration Caching**: Settings load instantly
+- **Progressive Initialization**: UI appears immediately, features load progressively
+
+### π§ Model Management Overhaul
+
+Streamlined model experience:
+- **One-Click Downloads**: Simplified model acquisition
+- **Download Resume**: Interrupted downloads continue automatically
+- **Parallel Downloads**: Download multiple models simultaneously
+- **Storage Optimization**: Automatic cleanup of unused model files
+- **Model Recommendations**: AI suggests optimal models for your hardware
+
+### πΎ Storage Efficiency
+
+Dramatic reduction in disk usage:
+- **Model Compression**: 30% smaller model files without quality loss
+- **Duplicate Detection**: Automatically removes duplicate models
+- **Incremental Updates**: Only download model changes, not entire files
+- **Smart Cleanup**: Removes temporary files and caches automatically
+- **Storage Analytics**: See exactly what's using your disk space
+
+### π Network Optimizations
+
+Faster downloads and better connectivity:
+- **CDN Integration**: Download models from the closest server
+- **Connection Pooling**: Efficient network resource usage
+- **Retry Logic**: Automatic recovery from network interruptions
+- **Bandwidth Adaptation**: Adjusts download speed to network conditions
+- **Offline Mode**: Better handling when internet is unavailable
+
+### π Performance Monitoring
+
+New tools to understand performance:
+- **Real-time Metrics**: See inference speed, memory usage, GPU utilization
+- **Performance History**: Track performance over time
+- **Bottleneck Detection**: Identify what's slowing down your system
+- **Benchmark Tools**: Compare performance across different configurations
+- **Performance Profiles**: Save optimal settings for different use cases
+
+### π Critical Fixes
+
+Major stability improvements:
+- Fixed memory leaks during long conversations
+- Resolved GPU driver compatibility issues
+- Eliminated random crashes during model switching
+- Fixed model corruption during interrupted downloads
+- Resolved race conditions in multi-threaded operations
+
+## Technical Details
+
+This release includes fundamental changes to our inference engine, memory management, and GPU acceleration systems. While backwards compatible, you may notice different memory usage patterns and significantly improved performance.
+
+Experience the fastest Jan ever. Download v0.6.4 and feel the difference.
+
+[Download Jan v0.6.4](https://jan.ai/) β’ [Performance Guide](/docs/performance) β’ [Release Notes](https://github.com/menloresearch/jan/releases/tag/v0.6.4)
\ No newline at end of file
diff --git a/website/src/content/changelog/2025-06-15-mcp-revolution.mdx b/website/src/content/changelog/2025-06-15-mcp-revolution.mdx
new file mode 100644
index 000000000..f25f28860
--- /dev/null
+++ b/website/src/content/changelog/2025-06-15-mcp-revolution.mdx
@@ -0,0 +1,88 @@
+---
+title: "Jan v0.6.5: MCP Revolution - Connect AI to Everything"
+version: 0.6.5
+description: "Introducing Model Context Protocol support, browser automation, and powerful tool integrations"
+date: 2025-06-15
+image: "/assets/images/changelog/mcp-revolution.gif"
+featured: true
+---
+
+## The MCP Era Begins π
+
+Jan v0.6.5 introduces groundbreaking Model Context Protocol (MCP) support, transforming Jan from a simple chat interface into a powerful AI automation platform. Connect your AI to browsers, APIs, databases, and countless tools.
+
+### π Model Context Protocol Integration
+
+MCP opens up infinite possibilities:
+- **Universal Tool Access**: Connect to any service that supports MCP
+- **Real-time Data**: Access live information from APIs and databases
+- **Browser Automation**: Control web browsers directly through AI commands
+- **File System Access**: Read, write, and manipulate files with AI assistance
+- **Custom Tools**: Build your own MCP servers for specialized workflows
+
+### π Built-in MCP Servers
+
+Launch with powerful integrations:
+- **Browser Control**: Automate web tasks, scrape data, fill forms
+- **File Management**: AI-powered file operations and organization
+- **API Integration**: Connect to REST APIs, GraphQL endpoints
+- **Database Access**: Query and update databases through natural language
+- **Git Operations**: Manage repositories with AI assistance
+
+### π― Smart Tool Discovery
+
+Jan automatically discovers and configures MCP tools:
+- **Auto-detection**: Finds available MCP servers on your system
+- **One-click Setup**: Enable tools with simple toggle switches
+- **Permission Control**: Fine-grained control over tool access
+- **Usage Analytics**: Track which tools your AI uses most
+
+### π‘οΈ Enhanced Security Framework
+
+Built with security as a priority:
+- **Sandboxed Execution**: Tools run in isolated environments
+- **Permission System**: Explicit approval for sensitive operations
+- **Audit Logging**: Complete history of tool usage and permissions
+- **Safe Defaults**: Conservative permissions that you can expand
+
+### π¨ Redesigned Tool Interface
+
+Beautiful new interface for tool management:
+- **Visual Tool Cards**: See available tools at a glance
+- **Real-time Status**: Know when tools are active or inactive
+- **Interactive Setup**: Guided configuration for complex tools
+- **Usage Insights**: Understand how your AI uses different tools
+
+### π§ Developer Experience
+
+For MCP server developers:
+- **Local Development**: Test MCP servers directly in Jan
+- **Debug Tools**: Built-in logging and error reporting
+- **Hot Reload**: Changes to MCP servers update instantly
+- **Protocol Validation**: Ensure your servers follow MCP standards
+
+### π Performance Improvements
+
+Under the hood optimizations:
+- **Faster Tool Loading**: MCP servers start 3x faster
+- **Memory Efficiency**: Reduced memory usage for tool operations
+- **Connection Pooling**: Efficient management of tool connections
+- **Async Operations**: Non-blocking tool execution
+
+### π Coming Next
+
+The MCP ecosystem is just getting started:
+- More built-in integrations (Slack, Discord, GitHub)
+- Visual workflow builder for complex automations
+- Community marketplace for sharing MCP servers
+- Enterprise-grade security and compliance features
+
+## Breaking Changes
+
+- Tool permissions now require explicit user approval
+- Some legacy integrations have been migrated to MCP
+- Configuration format updated for better security
+
+Transform how you work with AI. Download Jan v0.6.5 and enter the MCP era.
+
+For technical details, see our [MCP documentation](/docs/mcp) and [GitHub release](https://github.com/menloresearch/jan/releases/tag/v0.6.5).
\ No newline at end of file
diff --git a/website/src/content/changelog/2025-07-31-llamacpp-tutorials.mdx b/website/src/content/changelog/2025-07-31-llamacpp-tutorials.mdx
new file mode 100644
index 000000000..7b7c1bc43
--- /dev/null
+++ b/website/src/content/changelog/2025-07-31-llamacpp-tutorials.mdx
@@ -0,0 +1,116 @@
+---
+title: "Jan v0.6.6: Enhanced llama.cpp integration and smarter model management"
+version: 0.6.6
+description: "Major llama.cpp improvements, Hugging Face provider support, and refined MCP experience"
+date: 2025-07-31
+image: "/assets/images/changelog/changelog0.6.6.gif"
+featured: true
+---
+
+## Highlights π
+
+Jan v0.6.6 delivers significant improvements to the llama.cpp backend, introduces Hugging Face as a
+built-in provider, and brings smarter model management with auto-unload capabilities. This release
+also includes numerous MCP refinements and platform-specific enhancements.
+
+### π Major llama.cpp Backend Overhaul
+
+We've completely revamped the llama.cpp integration with:
+- **Smart Backend Management**: The backend now auto-updates and persists your settings properly
+- **Device Detection**: Jan automatically detects available GPUs and hardware capabilities
+- **Direct llama.cpp Access**: Models now interface directly with llama.cpp (previously hidden behind Cortex)
+- **Automatic Migration**: Your existing models seamlessly move from Cortex to direct llama.cpp management
+- **Better Error Handling**: Clear error messages when models fail to load, with actionable solutions
+- **Per-Model Overrides**: Configure specific settings for individual models
+
+### π€ Hugging Face Cloud Router Integration
+
+Connect to Hugging Face's new cloud inference service:
+- Access pre-configured models running on various providers (Fireworks, Together AI, and more)
+- Hugging Face handles the routing to the best available provider
+- Simplified setup with just your HF token
+- Non-deletable provider status to prevent accidental removal
+- Note: Direct model ID search in Hub remains available as before
+
+### π§ Smarter Model Management
+
+New intelligent features to optimize your system resources:
+- **Auto-Unload Old Models**: Automatically free up memory by unloading unused models
+- **Persistent Settings**: Your model capabilities and settings now persist across app restarts
+- **Zero GPU Layers Support**: Set N-GPU Layers to 0 for CPU-only inference
+- **Memory Calculation Improvements**: More accurate memory usage reporting
+
+### π― MCP Refinements
+
+Enhanced MCP experience with:
+- Tool approval dialog improvements with scrollable parameters
+- Better experimental feature edge case handling
+- Fixed tool call button disappearing issue
+- JSON editing tooltips for easier configuration
+- Auto-focus on "Always Allow" action for smoother workflows
+
+### π New MCP Integration Tutorials
+
+Comprehensive guides for powerful MCP integrations:
+- **Canva MCP**: Create and manage designs through natural language - generate logos, presentations, and marketing materials directly from chat
+- **Browserbase MCP**: Control cloud browsers with AI - automate web tasks, extract data, and monitor sites without complex scripting
+- **Octagon Deep Research MCP**: Access finance-focused research capabilities - analyze markets, investigate companies, and generate investment insights
+
+### π₯οΈ Platform-Specific Improvements
+
+**Windows:**
+- Fixed terminal windows popping up during model loading
+- Better process termination handling
+- VCRuntime included in installer for compatibility
+- Improved NSIS installer with app running checks
+
+**Linux:**
+- AppImage now works properly with newest Tauri version and it went from almost 1GB to less than 200MB
+- Better Wayland compatibility
+
+**macOS:**
+- Improved build process and artifact naming
+
+### π¨ UI/UX Enhancements
+
+Quality of life improvements throughout:
+- Fixed rename thread dialog showing incorrect thread names
+- Assistant instructions now have proper defaults
+- Download progress indicators remain visible when scrolling
+- Better error pages with clearer messaging
+- GPU detection now shows accurate backend information
+- Improved clickable areas for better usability
+
+### π§ Developer Experience
+
+Behind the scenes improvements:
+- New automated QA system using CUA (Computer Use Automation)
+- Standardized build process across platforms
+- Enhanced error stream handling and parsing
+- Better proxy support for the new downloader
+- Reasoning format support for advanced models
+
+### π Bug Fixes
+
+Notable fixes include:
+- Factory reset no longer fails with access denied errors
+- OpenRouter provider stays selected properly
+- Model search in Hub shows latest data only
+- Temporary download files are cleaned up on cancel
+- Legacy threads no longer appear above new threads
+- Fixed encoding issues on various platforms
+
+## Breaking Changes
+
+- Models previously managed by Cortex now interface directly with llama.cpp (automatic migration included)
+- Some sampling parameters have been removed from the llama.cpp extension for consistency
+- Cortex extension is deprecated in favor of direct llama.cpp integration
+
+## Coming Next
+
+We're working on expanding MCP capabilities, improving model download speeds, and adding more provider
+integrations. Stay tuned!
+
+Update your Jan or [download the latest](https://jan.ai/).
+
+For the complete list of changes, see the [GitHub release notes](https://github.com/menloresearch/jan/releases/tag/v0.6.6).
\ No newline at end of file
diff --git a/website/src/content/docs/index.mdx b/website/src/content/docs/index.mdx
index c4caf13d0..b17c78340 100644
--- a/website/src/content/docs/index.mdx
+++ b/website/src/content/docs/index.mdx
@@ -1,171 +1,172 @@
---
title: Jan
-description: Jan is an open-source ChatGPT-alternative and self-hosted AI platform - build and run AI on your own desktop or server.
+description: Build, run, and own your AI. From laptop to superintelligence.
keywords:
[
Jan,
- Jan AI,
- ChatGPT alternative,
- OpenAI platform alternative,
- local API,
+ self-hosted AI,
local AI,
- private AI,
- conversational AI,
- no-subscription fee,
- large language model,
- LLM,
+ open superintelligence,
+ AI ecosystem,
+ llama.cpp,
+ GGUF models,
+ MCP tools
]
---
import { Aside } from '@astrojs/starlight/components';
-
+
+## Jan's Goal
-Jan is a ChatGPT alternative that runs 100% offline on your desktop and (*soon*) on mobile. Our goal is to
-make it easy for anyone, with or without coding skills, to download and use AI models with full control and
-[privacy](https://www.reuters.com/legal/legalindustry/privacy-paradox-with-ai-2023-10-31/).
+> Jan's goal is to build superintelligence that you can self-host and use locally.
-Jan is powered by [Llama.cpp](https://github.com/ggerganov/llama.cpp), a local AI engine that provides an OpenAI-compatible
-API that can run in the background by default at `https://localhost:1337` (or your custom port). This enables you to power all sorts of
-applications with AI capabilities from your laptop/PC. For example, you can connect local tools like [Continue](https://jan.ai/docs/server-examples/continue-dev)
-and [Cline](https://cline.bot/) to Jan and power them using your favorite models.
+## What is Jan?
-Jan doesn't limit you to locally hosted models, meaning, you can create an API key from your favorite model provider,
-add it to Jan via the configuration's page and start talking to your favorite models.
+Jan is an open-source AI ecosystem that runs on your hardware.
-### Features
+- **Available Today**: Jan Desktop - run AI models on your computer with zero setup
+- **Coming Soon**: Complete ecosystem with specialized models, tools, and cross-device sync
-- Download popular open-source LLMs (Llama3, Gemma3, Qwen3, and more) from the HuggingFace [Model Hub](./jan/manage-models)
-or import any GGUF files (the model format used by llama.cpp) available locally
-- Connect to [cloud services](./jan/remote-models/openai) (OpenAI, Anthropic, Mistral, Groq, etc.)
-- [Chat](./jan/threads) with AI models & [customize their parameters](./jan/explanation/model-parameters) via our
-intuitive interface
-- Use our [local API server](https://jan.ai/api-reference) with an OpenAI-equivalent API to power other apps.
+### The Stack
-### Philosophy
+**Models**: Specialized AI models trained for real tasks (search, analysis, writing)
+**Tools**: Browser automation, web search, memory systems via MCP
+**Applications**: Desktop (now), Web/Mobile/Server (coming 2025)
-Jan is built to be [user-owned](about#-user-owned), this means that Jan is:
-- Truly open source via the [Apache 2.0 license](https://github.com/menloresearch/jan/blob/dev/LICENSE)
-- [Data is stored locally, following one of the many local-first principles](https://www.inkandswitch.com/local-first)
-- Internet is optional, Jan can run 100% offline
-- Free choice of AI models, both local and cloud-based
-- We do not collect or sell user data. See our [Privacy Policy](./privacy).
+Everything works together. Everything runs where you want it.
+
+
+
+## Core Features
+
+### Run Models Locally
+- Download any GGUF model from Hugging Face
+- Use our Jan models optimized for specific tasks
+- Automatic GPU acceleration (NVIDIA/AMD/Intel)
+- OpenAI-compatible API at `localhost:1337`
+
+### Connect to Cloud (Optional)
+- Your API keys for OpenAI, Anthropic, etc.
+- Jan.ai cloud models (coming soon)
+- Self-hosted Jan Server
+
+### Extend with Tools
+- Web search via MCP
+- Browser automation
+- File parsing and analysis
+- Custom tool development
+
+## Architecture
+
+Jan is built on:
+- [Llama.cpp](https://github.com/ggerganov/llama.cpp) for inference
+- [Model Context Protocol](https://modelcontextprotocol.io) for tools
+- Local-first data storage in `~/jan`
+
+## Why Jan?
+
+| Feature | Other AI Platforms | Jan |
+|:--------|:-------------------|:----|
+| **Deployment** | Their servers only | Your device, your servers, or our cloud |
+| **Models** | One-size-fits-all | Specialized models for specific tasks |
+| **Data** | Stored on their servers | Stays on your hardware |
+| **Cost** | Monthly subscription | Free locally, pay for cloud |
+| **Extensibility** | Limited APIs | Full ecosystem with MCP tools |
+
+## Development Philosophy
+
+1. **Local First**: Everything works offline. Cloud is optional.
+2. **User Owned**: Your data, your models, your compute.
+3. **Built in Public**: Watch our models train. See our code. Track our progress.
-### Inspirations
+## System Requirements
-Jan is inspired by the concepts of [Calm Computing](https://en.wikipedia.org/wiki/Calm_technology), and the Disappearing Computer.
+**Minimum**: 8GB RAM, 10GB storage
+**Recommended**: 16GB RAM, NVIDIA GPU, 50GB storage
+**Supported**: Windows 10+, macOS 12+, Linux (Ubuntu 20.04+)
-## Acknowledgements
-
-Jan is built on the shoulders of many open-source projects like:
-
-- [Llama.cpp](https://github.com/ggerganov/llama.cpp/blob/master/LICENSE)
-- [Scalar](https://github.com/scalar/scalar)
-
-## FAQs
+## What's Next?
-What is Jan?
+When will mobile/web versions launch?
-Jan is a customizable AI assistant that can run offline on your computer - a privacy-focused alternative to tools like ChatGPT, Anthropic's Claude, and Google Gemini, with optional cloud AI support.
+- **Jan Web**: Beta Q1 2025
+- **Jan Mobile**: Q4 2025
+- **Jan Server**: Q3 2025
+All versions will sync seamlessly with your desktop.
-How do I get started with Jan?
+What models are available?
-Download Jan on your computer, download a model or add API key for a cloud-based one, and start chatting. For detailed setup instructions, see our installation guides.
+**Now**:
+- Any GGUF model from Hugging Face
+- Cloud models via API keys (OpenAI, Anthropic, etc.)
+**Coming Q1 2025**:
+- Jan-Search: Optimized for web search and synthesis
+- Jan-Write: Creative and technical writing
+- Jan-Analyze: Data analysis and reasoning
+
+[Watch live training progress β](https://train.jan.ai)
-Is Jan compatible with my system?
+How does Jan make money?
-Jan supports all major operating systems:
-- [Mac](./jan/installation/mac#compatibility)
-- [Windows](./jan/installation/windows#compatibility)
-- [Linux](./jan/installation/linux)
-
-Hardware compatibility includes:
-- NVIDIA GPUs (CUDA)
-- AMD GPUs (Vulkan)
-- Intel Arc GPUs (Vulkan)
-- Any GPU with Vulkan support
+- **Local use**: Always free
+- **Cloud features**: Optional paid services (coming 2025)
+- **Enterprise**: Self-hosted deployment and support
+We don't sell your data. We sell software and services.
-How does Jan protect my privacy?
-
-Jan prioritizes privacy by:
-- Running 100% offline with locally-stored data
-- Using open-source models that keep your conversations private
-- Storing all files and chat history on your device in the [Jan Data Folder](./jan/data-folder)
-- Never collecting or selling your data
-
-
-
-You can optionally share anonymous usage statistics to help improve Jan, but your conversations are never shared. See our complete [Privacy Policy](./jan/privacy).
+Can I contribute?
+Yes. Everything is open:
+- [GitHub](https://github.com/janhq/jan) - Code contributions
+- [Model Training](https://jan.ai/docs/models) - See how we train
+- [Discord](https://discord.gg/FTk2MvZwJH) - Join discussions
+- [Model Testing](https://eval.jan.ai) - Help evaluate models
-What models can I use with Jan?
+Is this just another ChatGPT wrapper?
-- Download optimized models from the [Jan Hub](./jan/manage-models)
-- Import GGUF models from Hugging Face or your local files
-- Connect to cloud providers like OpenAI, Anthropic, Mistral and Groq (requires your own API keys)
+No. We're building:
+- Our own models trained for specific tasks
+- Complete local AI infrastructure
+- Tools that extend model capabilities
+- An ecosystem that works offline
+ChatGPT is one model behind an API. Jan is a complete AI platform you own.
-Is Jan really free? What's the catch?
+What about privacy?
-Jan is completely free and open-source with no subscription fees for local models and features. When using cloud-based models (like GPT-4o or Claude Sonnet 3.7), you'll only pay the standard rates to those providersβwe add no markup.
+**Local mode**: Your data never leaves your device. Period.
+**Cloud mode**: You choose when to use cloud features. Clear separation.
+See our [Privacy Policy](./privacy).
-
-Can I use Jan offline?
+## Get Started
-Yes! Once you've downloaded a local model, Jan works completely offline with no internet connection needed.
+1. [Install Jan Desktop](./jan/installation) - Your AI workstation
+2. [Explore Models](./jan/models) - Download and configure
+3. [Learn the API](./api-reference) - Build with Jan
-
+---
-
-How can I contribute or get community help?
-
-- Join our [Discord community](https://discord.gg/qSwXFx6Krr) to connect with other users
-- Contribute through [GitHub](https://github.com/menloresearch/jan) (no permission needed!)
-- Get troubleshooting help in our [Discord](https://discord.com/invite/FTk2MvZwJH) channel [#π|jan-help](https://discord.com/channels/1107178041848909847/1192090449725358130)
-- Check our [Troubleshooting](./jan/troubleshooting) guide for common issues
-
-
-
-
-Can I self-host Jan?
-
-Yes! We fully support the self-hosted movement. Either download Jan directly or fork it on [GitHub repository](https://github.com/menloresearch/jan) and build it from source.
-
-
-
-
-What does Jan stand for?
-
-Jan stands for "Just a Name". We are, admittedly, bad at marketing π.
-
-
-
-
-Are you hiring?
-
-Yes! We love hiring from our community. Check out our open positions at [Careers](https://menlo.bamboohr.com/careers).
-
-
+**Questions?** Join our [Discord](https://discord.gg/FTk2MvZwJH) or check [GitHub roadmap](https://github.com/janhq/jan/).
diff --git a/website/src/content/docs/jan/installation/windows.mdx b/website/src/content/docs/jan/installation/windows.mdx
index b50abf65f..45e80fad2 100644
--- a/website/src/content/docs/jan/installation/windows.mdx
+++ b/website/src/content/docs/jan/installation/windows.mdx
@@ -23,9 +23,6 @@ keywords:
import { Aside, Tabs, TabItem } from '@astrojs/starlight/components';
-
-# Windows Installation
-
## Compatibility
**System requirements:**
diff --git a/website/src/content/products/index.mdx b/website/src/content/products/index.mdx
index 3dab3e086..fdc2dfdaa 100644
--- a/website/src/content/products/index.mdx
+++ b/website/src/content/products/index.mdx
@@ -6,7 +6,6 @@ sidebar:
---
import { Aside, Card, CardGrid } from '@astrojs/starlight/components';
-**Jan's Goal is**
> **to build a superintelligence that you can self-host and use locally on your own devices.**
diff --git a/website/src/layouts/Layout.astro b/website/src/layouts/Layout.astro
index 591effc34..3c74fc18e 100644
--- a/website/src/layouts/Layout.astro
+++ b/website/src/layouts/Layout.astro
@@ -27,11 +27,71 @@ const { title } = Astro.props;
+
+
+
+
+
+