Components
Loading preview...
Apple Glow Hero Gradient-glow typography highlighting innovation and intelligence. Perfect for impactful hero sections where bold visuals meet futuristic branding.
@ravikatiyar
npx shadcn@latest add https://21st.dev/r/ravikatiyar162/hero-1import React from "react";
import GlowHero from "@/components/ui/hero-1";
const Demo: React.FC = () => {
return (
<div className="min-h-screen w-full grid place-items-center p-8 font-sans transition-colors">
<GlowHero
label="MacBook Pro"
glowText="Built for Apple Intelligence."
glowTextSize="xl"
/>
</div>
);
};
export default Demo;