diff --git a/client/components/docs/DocsHeroSection.tsx b/client/components/docs/DocsHeroSection.tsx new file mode 100644 index 00000000..398e3a44 --- /dev/null +++ b/client/components/docs/DocsHeroSection.tsx @@ -0,0 +1,50 @@ +import { Button } from "@/components/ui/button"; +import { Link } from "react-router-dom"; +import { Rocket, Play } from "lucide-react"; + +interface DocsHeroSectionProps { + title?: string; + description?: string; + showButtons?: boolean; +} + +export default function DocsHeroSection({ + title = "Welcome to AeThex Documentation", + description = "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.", + showButtons = true, +}: DocsHeroSectionProps) { + return ( +
+

{title}

+

+ {description} +

+ + {showButtons && ( +
+ + +
+ )} +
+ ); +}