|
| 1 | +import { icons } from 'lucide-react' |
| 2 | + |
| 3 | +import { Icon } from '@/components/ui/icon' |
| 4 | + |
| 5 | +const features: { title: string; description: string; icon: string }[] = [ |
| 6 | + { |
| 7 | + title: 'Interactive Setup Wizard', |
| 8 | + description: |
| 9 | + 'Simplify the initial configuration and installation process with a guided, step-by-step wizard.', |
| 10 | + icon: 'Wand' |
| 11 | + }, |
| 12 | + { |
| 13 | + title: 'Comprehensive API Documentation', |
| 14 | + description: |
| 15 | + 'Access detailed API references with examples to help integrate and extend the product.', |
| 16 | + icon: 'Code' |
| 17 | + }, |
| 18 | + { |
| 19 | + title: 'Deployment Guides', |
| 20 | + description: |
| 21 | + 'Follow in-depth tutorials for deploying the product across various environments, including cloud and on-premises.', |
| 22 | + icon: 'Cloud' |
| 23 | + }, |
| 24 | + { |
| 25 | + title: 'Use Case Scenarios', |
| 26 | + description: |
| 27 | + 'Explore real-world examples and case studies demonstrating how to apply the product to solve specific problems.', |
| 28 | + icon: 'BookOpen' |
| 29 | + }, |
| 30 | + { |
| 31 | + title: 'Search and Navigation', |
| 32 | + description: |
| 33 | + 'Utilize advanced search functionality and intuitive navigation to quickly find relevant information.', |
| 34 | + icon: 'Search' |
| 35 | + }, |
| 36 | + { |
| 37 | + title: 'Troubleshooting and FAQs', |
| 38 | + description: |
| 39 | + 'Access a dedicated section for common issues and frequently asked questions to resolve problems quickly.', |
| 40 | + icon: 'HandHelping' |
| 41 | + } |
| 42 | +] |
| 43 | + |
| 44 | +export const Information = () => { |
| 45 | + return ( |
| 46 | + <section id='information' className='w-full py-12 md:py-24 lg:py-32 flex justify-center'> |
| 47 | + <div className='container px-4 md:px-6'> |
| 48 | + <div className='gap-6'> |
| 49 | + <div className='space-y-4 grid grid-cols-2'> |
| 50 | + <div className='space-y-2 flex flex-col justify-center'> |
| 51 | + <h2 className='text-3xl font-bold tracking-tighter sm:text-4xl md:text-5xl'> |
| 52 | + Introducing Our Documentation |
| 53 | + </h2> |
| 54 | + <p className='max-w-[600px] text-muted-foreground md:text-xl/relaxed lg:text-base/relaxed xl:text-xl/relaxed'> |
| 55 | + Our Documentation Platform offers an extensive collection of resources designed to |
| 56 | + guide you through every aspect of our product. From initial configuration and |
| 57 | + installation to seamless deployment, our step-by-step instructions ensure a smooth |
| 58 | + setup process. |
| 59 | + </p> |
| 60 | + </div> |
| 61 | + |
| 62 | + <div className='grid grid-cols-2 gap-4'> |
| 63 | + {features.map((feature) => ( |
| 64 | + <div key={feature.title} className='rounded-lg border bg-background p-4 shadow-sm'> |
| 65 | + <div className='flex h-12 w-12 items-center justify-center rounded-full bg-primary'> |
| 66 | + <Icon |
| 67 | + name={feature.icon as keyof typeof icons} |
| 68 | + size={20} |
| 69 | + className='text-primary-foreground' |
| 70 | + /> |
| 71 | + </div> |
| 72 | + <h3 className='mt-4 text-lg font-semibold'>{feature.title}</h3> |
| 73 | + <p className='text-sm text-muted-foreground'>{feature.description}</p> |
| 74 | + </div> |
| 75 | + ))} |
| 76 | + </div> |
| 77 | + </div> |
| 78 | + </div> |
| 79 | + </div> |
| 80 | + </section> |
| 81 | + ) |
| 82 | +} |
0 commit comments