import { redirect } from "next/navigation"; import { createNote } from "@/lib/notes"; export default async function NewNote() { const noteId = await createNote(); if (noteId) { redirect(`/notes/${noteId}`); } return (