My Next Project
npx create-next-app took ~ 1min Add components\note\NewNoteForm.js and its css return above component from main index.js pages\index.js import NewNoteForm from "../components/note/NewNoteForm"; export default function Home() { return <NewNoteForm />; } Notice that Card is needed Add: components\ui\Card.js components\ui\Card.module.css Note finally looks: Styling needed at root: Remember this, maybe _app.js that will work on ALL pages. Will do later Customize NewNoteForm Add a heading remove unwanted fields and code to read them...