1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-23 05:49:36 +01:00

11 lines
306 B
React
Raw Normal View History

2022-08-31 20:55:26 +05:30
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>
);
}