2022-11-11 21:39:28 +01:00
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
export default function Header() {
|
|
|
|
return (
|
|
|
|
<a
|
|
|
|
href="https://github.com/upscayl/upscayl"
|
|
|
|
target="_blank"
|
|
|
|
className="outline-none focus-visible:ring-2"
|
2022-12-08 04:25:26 +01:00
|
|
|
data-tip="Star us on GitHub 😁">
|
2022-11-11 21:39:28 +01:00
|
|
|
<div className="flex items-center gap-3 px-5 py-5">
|
2022-12-08 04:25:26 +01:00
|
|
|
<img src="icon.png" className="inline-block w-14" alt="Upscayl Logo" />
|
2022-11-11 21:39:28 +01:00
|
|
|
<div className="flex flex-col justify-center">
|
2022-11-11 22:32:24 +01:00
|
|
|
<h1 className="text-3xl font-bold">Upscayl</h1>
|
|
|
|
<p className="">AI Image Upscaler</p>
|
2022-11-11 21:39:28 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
);
|
|
|
|
}
|