You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
website/app/components/Header.tsx

14 lines
340 B
TypeScript

import { Wave } from "./icons/Wave";
export const Header = () => {
return (
<h1 className="text-2xl lg:text-3xl xl:text-4xl 2xl:text-5xl font-bold tracking-tight text-center">
Hiya{" "}
<div className="inline-block motion-safe:animate-waving-hand">
<Wave />
</div>
, I&#39;m Goudham
</h1>
);
};