import Link from "next/link"; import { redirect } from "next/navigation"; import { getAuth } from "@/lib/auth"; import Editor from "@/components/editor/Editor"; export default async function Home() { const auth = await getAuth(); if (auth) { redirect("/notes"); } return (
Changes are not saved!
Log in to save your notes.
); }