In the last few posts I knocked out a slew of initial work. Much of it was just to get things up and running and make sure the database was live, the site was live, and that there was a good connection between the two. I did this by building the first basic login page with a dashboard that just shows that the user is logged in, along with a few pages to display general static content. That can be found in:
- Building “Adron’s Core Platform”: Starting a React App on Vercel
- Getting a Vercel PostgreSQL Database and Basic Authentication Operational
- The Confederacy of Errors Starting With Next Auth; Error, Error, npm ERR!
The tasks I’ll accomplish in the following post:
- I want a horizontal menu across the top that will link to the dashboard, login, and about page.
- I want an account creation page.
- I want to make sure that I set things up for the post-login action to be a redirect to the dashboard page.
Adding a Horizontal Menu
For this menu I’m going to add a div with links, assign it as a flex space (css), and add the pertinent links. The changed ./src/app/components/Navigation.tsx with changes looks like this now.
Continue reading “A Successful Deploy to Vercel + Adding More Auth & Login Features to The Web Interface (Plus an Error!)”


You must be logged in to post a comment.