import { Card, CardContent, CardDescription, CardHeader, CardTitle, } from "@/components/ui/card"; import { Button } from "@/components/ui/button"; import { Link } from "react-router-dom"; import { Github, ExternalLink, Users } from "lucide-react"; import DocsHeroSection from "@/components/docs/DocsHeroSection"; import QuickStartSection from "@/components/docs/QuickStartSection"; import ResourceSectionsGrid from "@/components/docs/ResourceSectionsGrid"; import LearningResourcesGrid from "@/components/docs/LearningResourcesGrid"; import RecentUpdatesSection from "@/components/docs/RecentUpdatesSection"; import DocsSupportCTA from "@/components/docs/DocsSupportCTA"; export default function DocsOverview() { return (
{/* Hero Section */}

Welcome to AeThex Documentation

Everything you need to build, deploy, and scale amazing projects with AeThex. Get started with our guides, explore our APIs, and learn from comprehensive tutorials.

{/* Quick Start Cards */}

Quick Start

{quickStartCards.map((card, index) => { const Icon = card.icon; return (
{card.isNew && ( New )}
{card.title}
{card.description}
{card.duration} {card.difficulty}
); })}
{/* Resource Sections */}

Documentation Sections

{resourceSections.map((section, index) => { const Icon = section.icon; return (
{section.badge}
{section.title} {section.description}
    {section.items.map((item, itemIndex) => (
  • {item}
  • ))}
Explore section
); })}
{/* Learning Resources */}

Learning resources

{learningResources.map((resource, index) => { const Icon = resource.icon; return (
{resource.title} {resource.description}
{resource.count}
); })}
{/* Featured Updates */}

Recent Updates

{featuredUpdates.map((update, index) => (

{update.title}

{update.isNew && ( New )} {update.type}

{update.description}

{update.date}

))}
{/* Additional Resources */}
GitHub Repository Explore our open-source projects and contribute to the community Community Support Join our community for help, discussions, and collaboration
{/* Support CTA */}

Need help getting started?

Our documentation team updates these guides weekly. If you're looking for tailored onboarding, architecture reviews, or migration support, reach out and we'll connect you with the right experts.

); }