25 lines
824 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Metadata } from "next";
import AuthForm from "@/components/forms/AuthForm";
export const metadata: Metadata = {
title: "Authenticate - Rhyme",
description: "Register or log into Rhyme account to save, show and load notes",
};
export default function About() {
return (
<>
<div className="m-4">
<h1 className="font-bold text-xl mb-2">Authenticate</h1>
<p className="mb-2">Please, use this form to log in/register:</p>
<AuthForm />
</div>
<div className="text-center text-sm text-neutral-400">
<p>Welcome to rhyme!</p>
<p>Free service for writing and saving notes, lyrics, poetry, etc...</p>
<p>Made with by <a href="https://misterkirill.com" className="font-bold hover:underline">Kirill Siukhin</a></p>
</div>
</>
);
}