1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-12 01:40:53 +01:00
upscayl/renderer/components/Header.jsx
2022-08-31 20:55:26 +05:30

11 lines
306 B
JavaScript

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>
);
}