|
| 1 | +import { CpuIcon, LockIcon, SparklesIcon, ZapIcon } from 'lucide-react'; |
| 2 | +import Image from 'next/image'; |
| 3 | +import debugPanelImg from './debug_panel.png'; |
| 4 | + |
| 5 | +export const AdminSection = () => { |
| 6 | + return ( |
| 7 | + <section className="py-16 md:py-32"> |
| 8 | + <div className="mx-auto max-w-6xl space-y-12 px-6"> |
| 9 | + <div className="flex items-center justify-center text-center"> |
| 10 | + <h2 className="max-w-xl text-4xl font-semibold"> |
| 11 | + Powerful AdminCP brings together all management tools |
| 12 | + </h2> |
| 13 | + </div> |
| 14 | + <div className="relative rounded-3xl p-3 md:-mx-8 lg:col-span-3"> |
| 15 | + <div className="aspect-88/36 relative"> |
| 16 | + <div className="bg-linear-to-t z-1 from-background absolute inset-0 to-transparent"></div> |
| 17 | + <Image |
| 18 | + src={debugPanelImg} |
| 19 | + className="hidden dark:block" |
| 20 | + alt="payments illustration dark" |
| 21 | + width={2797} |
| 22 | + height={1137} |
| 23 | + /> |
| 24 | + <Image |
| 25 | + src={debugPanelImg} |
| 26 | + className="dark:hidden" |
| 27 | + alt="payments illustration light" |
| 28 | + width={2797} |
| 29 | + height={1137} |
| 30 | + /> |
| 31 | + </div> |
| 32 | + </div> |
| 33 | + <div className="relative mx-auto grid grid-cols-2 gap-x-3 gap-y-6 sm:gap-8 lg:grid-cols-4"> |
| 34 | + <div className="space-y-3"> |
| 35 | + <div className="flex items-center gap-2"> |
| 36 | + <CpuIcon className="size-4" /> |
| 37 | + <h3 className="text-sm font-medium">Powerful</h3> |
| 38 | + </div> |
| 39 | + <p className="text-muted-foreground text-sm"> |
| 40 | + Manage users, content and settings from one powerful command |
| 41 | + center. |
| 42 | + </p> |
| 43 | + </div> |
| 44 | + <div className="space-y-2"> |
| 45 | + <div className="flex items-center gap-2"> |
| 46 | + <CpuIcon className="size-4" /> |
| 47 | + <h3 className="text-sm font-medium">Powerful</h3> |
| 48 | + </div> |
| 49 | + <p className="text-muted-foreground text-sm"> |
| 50 | + Manage users, content and settings from one powerful command |
| 51 | + center. |
| 52 | + </p> |
| 53 | + </div> |
| 54 | + <div className="space-y-2"> |
| 55 | + <div className="flex items-center gap-2"> |
| 56 | + <LockIcon className="size-4" /> |
| 57 | + <h3 className="text-sm font-medium">Powerful</h3> |
| 58 | + </div> |
| 59 | + <p className="text-muted-foreground text-sm"> |
| 60 | + Manage users, content and settings from one powerful command |
| 61 | + center. |
| 62 | + </p> |
| 63 | + </div> |
| 64 | + <div className="space-y-2"> |
| 65 | + <div className="flex items-center gap-2"> |
| 66 | + <SparklesIcon className="size-4" /> |
| 67 | + |
| 68 | + <h3 className="text-sm font-medium">Powerful</h3> |
| 69 | + </div> |
| 70 | + <p className="text-muted-foreground text-sm"> |
| 71 | + Manage users, content and settings from one powerful command |
| 72 | + center. |
| 73 | + </p> |
| 74 | + </div> |
| 75 | + </div> |
| 76 | + </div> |
| 77 | + </section> |
| 78 | + ); |
| 79 | +}; |
0 commit comments