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.
15 lines
282 B
TypeScript
15 lines
282 B
TypeScript
1 year ago
|
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'm Goudham
|
||
|
</H1>
|
||
|
);
|
||
|
};
|