File size: 866 Bytes
5043eea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
const URL = "https://mayankgupta.in";

export default function MadeBy() {
  return (
    <a
      href={URL}
      target="_blank"
      rel="noopener noreferrer"
      aria-label="Made by Mayank Gupta — opens mayankgupta.in in a new tab"
      className="group block text-center py-6 select-none"
    >
      <div className="label-mono inline-flex items-center gap-1.5 text-muted-foreground">
        <span>Made with</span>
        <span
          aria-hidden
          className="text-[hsl(var(--ember))] group-hover:animate-pulse-dot"
        >

        </span>
        <span>by</span>
      </div>
      <div className="display-serif text-[24px] mt-1 transition-colors duration-200 group-hover:text-[hsl(var(--ember))]">
        techfreakworm
      </div>
      <div className="label-mono mt-1 text-muted-foreground/70">2026</div>
    </a>
  );
}