Files
copilotkit__copilotkit/docs/components/branding/CopilotKitHero.tsx
2026-02-13 11:01:44 +01:00

18 lines
600 B
TypeScript

import Image from "next/image";
export const CopilotKitHero = () => (
<div className="flex justify-center relative overflow-hidden mb-16 rounded-3xl pointer-events-none">
<div className="absolute inset-0 bg-gradient-to-r from-indigo-500 via-purple-500 to-pink-500 rounded-3xl opacity-60"></div>
<div className="relative z-10 p-12 transform transition-all duration-300">
<Image
src={
"https://cdn.copilotkit.ai/docs/copilotkit/copilotkit-logo-dark.png"
}
width={400}
height={100}
alt="CopilotKit Logo"
/>
</div>
</div>
);