feat: remove API terminal demo from Manager home page

This commit is contained in:
2026-05-18 22:27:28 +08:00
parent cb8e5a430d
commit 5e362d6965
@@ -3,7 +3,6 @@ import { ArrowRight } from 'lucide-react'
import { useTranslation } from 'react-i18next' import { useTranslation } from 'react-i18next'
import { useSystemConfig } from '@/hooks/use-system-config' import { useSystemConfig } from '@/hooks/use-system-config'
import { Button } from '@/components/ui/button' import { Button } from '@/components/ui/button'
import { HeroTerminalDemo } from '../hero-terminal-demo'
interface HeroProps { interface HeroProps {
className?: string className?: string
@@ -76,12 +75,6 @@ export function Hero(props: HeroProps) {
</div> </div>
</div> </div>
<div
className='landing-animate-fade-up w-full opacity-0'
style={{ animationDelay: '300ms' }}
>
<HeroTerminalDemo />
</div>
</section> </section>
) )
} }