From 9aed6d5412ab4ffb632b3ef69344990245ded95d Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 9 Jun 2026 23:40:03 +0000 Subject: [PATCH] Switch to version 1: remove src/app/docs/page.tsx --- src/app/docs/page.tsx | 79 ------------------------------------------- 1 file changed, 79 deletions(-) delete mode 100644 src/app/docs/page.tsx diff --git a/src/app/docs/page.tsx b/src/app/docs/page.tsx deleted file mode 100644 index 2f38f4e..0000000 --- a/src/app/docs/page.tsx +++ /dev/null @@ -1,79 +0,0 @@ -"use client"; - -import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import HeroSignup from '@/components/sections/hero/HeroSignup'; -import FeatureCardSix from '@/components/sections/feature/FeatureCardSix'; -import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; -import { FileText, HelpCircle, Bot, Code, Database } from "lucide-react"; - -export default function DocsPage() { - const navItems = [ - { name: "Features", id: "features" }, - { name: "Pricing", id: "pricing" }, - { name: "Docs", href: "/docs" }, - { name: "Contact", id: "contact" }, - { name: "Admin", href: "/admin" } - ]; - - const docsFeatures = [ - { - title: "Agent Creation Guide", description: "Step-by-step instructions on how to build and configure your first AI agent.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/feature1.webp", imageAlt: "Agent Creation Guide" - }, - { - title: "API Reference", description: "Detailed documentation for integrating AgentFlow with your existing systems.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/feature2.webp", imageAlt: "API Reference" - }, - { - title: "Integrations Setup", description: "Guides for connecting AgentFlow with popular third-party tools and services.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/feature3.webp", imageAlt: "Integrations Setup" - }, - { - title: "Troubleshooting & FAQs", description: "Common issues and solutions to help you resolve problems quickly.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/luxury-travel-agency/feature4.webp", imageAlt: "Troubleshooting & FAQs" - } - ]; - - return ( - - - - ({ - title: f.title, - description: f.description, - imageSrc: f.imageSrc, - imageAlt: f.imageAlt, - buttons: [{ text: "Read More", href: "#" }] - }))} - /> - - ); -}