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

15 lines
282 B
TypeScript

import { Wave } from "./icons/Wave";
import { H1 } from "./utils/Titles";
export const Header = () => {
return (
<H1>
Hiya{" "}
<div className="inline-block motion-safe:animate-waving-hand">
<Wave />
</div>
, I&#39;m Goudham
</H1>
);
};