Some checks failed
Docker Deploy / build-and-push (push) Failing after 2m3s
15 lines
345 B
TypeScript
15 lines
345 B
TypeScript
export default function HomeButtonLinks() {
|
|
return (
|
|
<div class="flex flex-row gap-4 text-3xl">
|
|
<a
|
|
href="/files/Atridad_Lahiji_Resume_Public.pdf"
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
aria-label="React"
|
|
class="btn btn-dash btn-primary"
|
|
>
|
|
Resumé
|
|
</a>
|
|
</div>
|
|
);
|
|
}
|