feat: redesign powerby

This commit is contained in:
2026-03-10 17:11:56 +05:30
parent c65fb255f9
commit 53d9b9cb81
13 changed files with 52 additions and 53 deletions

18
components/powered-by.tsx Normal file
View File

@@ -0,0 +1,18 @@
import Image from "next/image"
export function PoweredBy() {
return (
<div className="mt-8 flex items-center justify-center gap-2 transition-opacity duration-300">
<span className="font-medium powered-blue-gradient">
Powered by
</span>
<Image
src="/sg.svg"
alt="Sentient Geeks"
width={130}
height={20}
className="fill-blue-500"
/>
</div>
)
}