diff --git a/client/pages/docs/DocsOverview.tsx b/client/pages/docs/DocsOverview.tsx index c6806493..9d87777c 100644 --- a/client/pages/docs/DocsOverview.tsx +++ b/client/pages/docs/DocsOverview.tsx @@ -18,225 +18,14 @@ 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 */} -
+
@@ -291,40 +80,7 @@ export default function DocsOverview() {
- {/* 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. -

-
- - -
-
+
); }