2022-08-31 20:55:26 +05:30
|
|
|
import React from "react";
|
|
|
|
|
|
|
|
export default function Header() {
|
|
|
|
return (
|
2022-09-19 23:35:29 +05:30
|
|
|
<a
|
|
|
|
href="https://github.com/upscayl/upscayl"
|
|
|
|
target="_blank"
|
|
|
|
className="outline-none focus-visible:ring-2"
|
|
|
|
>
|
2022-09-19 05:24:45 +05:30
|
|
|
<div className="flex items-center gap-3 px-5 py-5">
|
|
|
|
<img
|
2022-09-19 21:03:11 +05:30
|
|
|
src="icon.png"
|
2022-09-19 05:24:45 +05:30
|
|
|
className="inline-block w-14"
|
|
|
|
alt="Upscayl Logo"
|
|
|
|
data-tip="Star us on GitHub 😁"
|
|
|
|
/>
|
|
|
|
<div className="flex flex-col justify-center">
|
|
|
|
<h1 className="text-3xl font-bold text-neutral-50">Upscayl</h1>
|
|
|
|
<p className="text-neutral-400">AI Image Upscaler</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-08-31 20:55:26 +05:30
|
|
|
</a>
|
|
|
|
);
|
|
|
|
}
|