mirror of https://github.com/sgoudham/website.git
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.
14 lines
340 B
TypeScript
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'm Goudham
|
|
</h1>
|
|
);
|
|
};
|