mirror of
https://github.com/upscayl/upscayl.git
synced 2025-02-23 05:49:36 +01:00
11 lines
306 B
React
11 lines
306 B
React
|
import React from "react";
|
||
|
|
||
|
export default function Header() {
|
||
|
return (
|
||
|
<a href="https://github.com/upscayl/upscayl" target="_blank">
|
||
|
<h1 className="pl-5 pt-5 text-3xl font-bold text-neutral-50">Upscayl</h1>
|
||
|
<p className="mb-2 pl-5 text-neutral-400">AI Image Upscaler</p>
|
||
|
</a>
|
||
|
);
|
||
|
}
|