Components
Loading preview...
Thermal Shader, You can customised and update with your png logo.
npx shadcn@latest add https://21st.dev/r/designali-in/thermal-shader"use client"
import { ThermalEffect} from "@/components/ui/thermal-shader"
export default function Home() {
return (
<main className="flex px-40 gap-10 items-center w-full h-full justify-center">
<ThermalEffect logoUrl="https://raw.githubusercontent.com/dalim-in/dalim/refs/heads/main/apps/ui/public/apple.png "
/>
<p className="text-7xl font-thin">X</p>
<ThermalEffect logoUrl="https://raw.githubusercontent.com/dalim-in/dalim/refs/heads/main/apps/ui/public/vercel.png "
/>
</main>
)
}