Components
Loading preview...
Animated Portfolio Hero Section - Bold Name with Profile Image Overlay A striking, modern portfolio hero component featuring animated blur-in text effects and a profile image overlay. Perfect for developers, designers, and creatives who want to make a bold first impression.
npx shadcn@latest add https://21st.dev/r/waleedkibhen/portfolio-heroimport React from "react";
import Component from "@/components/ui/portfolio-hero";
export default function Demo() {
return (
<>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Fira+Code:wght@700&family=Antic&display=swap"
/>
<div className="w-full">
<Component />
</div>
</>
);
}