₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,326,395 members, 8,426,311 topics. Date: Sunday, 14 June 2026 at 04:42 AM

Toggle theme

My Website/Web Application Projects - Programming (3) - Nairaland

Nairaland ForumScience/TechnologyProgrammingMy Website/Web Application Projects (10425 Views)

1 2 3 4 5 6 7 8 9 Reply (Go Down)

Re: My Website/Web Application Projects by aktem(op): 9:39am On Jun 03, 2025
aktem:
My portfolio website is nearly complete, and I’ll be sharing visuals soon. A developer friend visited me today and, while reviewing my site, suggested I should have used Next.js instead of plain React. I responded that it’s not a big deal since Next.js is built on top of React. This got me thinking—why do developers often hype specific frameworks while overlooking the importance of core fundamentals? It also raises an interesting question: why is Next.js increasingly preferred over React in today’s development landscape? I’ll be exploring this in my next post.
Time to address this and let everyone know the reason why is Next.js increasingly preferred over Plain React today

Next.js is increasingly preferred over plain React because it enhances React with powerful features like server-side rendering (SSR), static site generation (SSG), built-in routing, and API routes—all out of the box—making it more suitable for production-ready applications. While React is a library for building UI components, Next.js is a full-fledged framework that simplifies setup, improves performance (especially for SEO and page load speed), and streamlines development with features like image optimization, file-based routing, and automatic code splitting. This makes it an ideal choice for developers and teams looking to build fast, scalable, and SEO-friendly web apps with minimal configuration.
Re: My Website/Web Application Projects by aktem(op): 10:48pm On Jun 04, 2025
Re: My Website/Web Application Projects by aktem(op): 12:38pm On Jun 07, 2025
Mobile screen of the website in light mode

Re: My Website/Web Application Projects by aktem(op): 8:05am On Jun 08, 2025
aktem:
Project 4: E-Commerce Website with Email-Based Ordering

For this project, the client requested a streamlined e-commerce website without automatic payment integration, user authentication, or a database system due to budget constraints. Instead, the website needed to allow customers to browse food items, add them to a cart, and place orders. Upon checkout, the order details would be sent directly to the client’s email via the EmailJS API. The client would then manually verify payments and contact customers via SMS, call, or WhatsApp to confirm orders.

To meet these requirements, I developed the website using Next.js and successfully integrated EmailJS for seamless order notifications. The project was completed within two weeks.
Quick project update: My client has decided to upgrade their website by adding backend functionality. New features include user authentication (login/signup), order history, user profiles, Paystack integration for payments, an admin dashboard, and more advanced tools.

Since I’m more comfortable with Firebase, I’ll be using it to handle the backend. So far, I’ve implemented user authentication—just haven’t pushed it to GitHub yet.

Sometimes I feel like I’m naturally evolving into a fullstack developer, not just frontend anymore, because I'm can now handle backend technologies comfortably. One step at a time.

Re: My Website/Web Application Projects by aktem(op): 10:59am On Jun 09, 2025
For people that don't like dark theme. Almost done with User order history feature

Re: My Website/Web Application Projects by moinkhan00: 11:21am On Jun 09, 2025
thanks for the useful information
Re: My Website/Web Application Projects by aktem(op): 9:12am On Jun 10, 2025
moinkhan00:
thanks for the useful information
You're welcome
Re: My Website/Web Application Projects by aktem(op):
aktem:
Quick project update: My client has decided to upgrade their website by adding backend functionality. New features include user authentication (login/signup), order history, user profiles, Paystack integration for payments, an admin dashboard, and more advanced tools.

Since I’m more comfortable with Firebase, I’ll be using it to handle the backend. So far, I’ve implemented user authentication—just haven’t pushed it to GitHub yet.

Sometimes I feel like I’m naturally evolving into a fullstack developer, not just frontend anymore, because I'm can now handle backend technologies comfortably. One step at a time.
The order history feature has been completed,users can now view their past orders. Each order is assigned a unique code, which can be generated using Firebase Firestore’s `addDoc()` method (which provides an auto-generated document ID), or by creating a custom order code using a function like `ORD-${date}-${randomString}` and storing it along with the order data.

Re: My Website/Web Application Projects by LeoroxFx(m): 9:15pm On Jun 12, 2025
aktem:
Quick project update: My client has decided to upgrade their website by adding backend functionality. New features include user authentication (login/signup), order history, user profiles, Paystack integration for payments, an admin dashboard, and more advanced tools.

Since I’m more comfortable with Firebase, I’ll be using it to handle the backend. So far, I’ve implemented user authentication—just haven’t pushed it to GitHub yet.

Sometimes I feel like I’m naturally evolving into a fullstack developer, not just frontend anymore, because I'm can now handle backend technologies comfortably. One step at a time.
Bro well done. I love what you do. I'm a web developer as well but still upcoming never worked on projects for any client but side projects. Pls how do you get your clients. Cos getting a job is not easy when you have no experience
Re: My Website/Web Application Projects by aktem(op): 2:12pm On Jun 13, 2025
LeoroxFx:
Bro well done. I love what you do. I'm a web developer as well but still upcoming never worked on projects for any client but side projects. Pls how do you get your clients. Cos getting a job is not easy when you have no experience
Thanks, bro. I understand — getting a job as a beginner with no experience is tough. I’ve been in your shoes.

In my case, what really helped me was this:

I’ve been a graphic designer for many years with a lot of clients.
I still do graphic design as a side hustle, but I transitioned into tech as a frontend developer 3 years ago.
At the start, I had no jobs or clients for web development — just like you.
Then I had an idea that changed everything:

I started telling my graphic design clients that I also build websites.
Anytime a new client contacted me for a logo, flyer, or any design, I made sure to mention that I create websites too.
Soon, I started getting website jobs regularly. It hasn't stopped since.
I always delivered quality work, and many clients referred me or came back with more jobs.
Here’s what you can do:
Build solid website projects, even if they’re personal projects.
Create social media accounts (especially TikTok, Twitter, etc.) and share your projects regularly.
Join and engage in tech/web dev discussions on your page or in communities.
Network with other developers.
Tell people (both online and offline) about your skills and what you offer.
Build a good portfolio website and a professional GitHub account.
Make sure your GitHub has 2–3 strong personal projects.
Apply for jobs and internships as often as possible.
Most importantly, keep improving your skills — be good at what you do.
If you stay consistent and determined, you’ll eventually land either a salaried job or regular freelance projects
Re: My Website/Web Application Projects by aktem(op):
aktem:
The order history feature has been completed—users can now view their past orders. Each order is assigned a unique code, which can be generated using Firebase Firestore’s `addDoc()` method (which provides an auto-generated document ID), or by creating a custom order code using a function like `ORD-${date}-${randomString}` and storing it along with the order data.
.

I’m excited to share that I’ve successfully integrated the Paystack payment gateway into the food ordering and delivery web application. This was done using Paystack’s API with both the secret and public keys, alongside proper implementation of the callback and webhook URLs to securely handle payment confirmations.

So far, the following core features have been fully implemented:

User Authentication
User Profile Management
Order History Tracking
Secure Online Payments via Paystack
The final major component in progress is the Admin Dashboard, which will handle order management, product updates, and user activity monitoring.

Looking forward to completing the final phase and sharing more updates soon. Feedback is welcome!

Re: My Website/Web Application Projects by aktem(op):
This project has been a great opportunity to apply full-stack development skills in a real-world context. I’m also exploring performance optimizations and mobile responsiveness as part of the final polish.

Re: My Website/Web Application Projects by aktem(op): 3:53pm On Jun 17, 2025
aktem:
.

I’m excited to share that I’ve successfully integrated the Paystack payment gateway into the food ordering and delivery web application. This was done using Paystack’s API with both the secret and public keys, alongside proper implementation of the callback and webhook URLs to securely handle payment confirmations.

So far, the following core features have been fully implemented:

User Authentication
User Profile Management
Order History Tracking
Secure Online Payments via Paystack
The final major component in progress is the Admin Dashboard, which will handle order management, product updates, and user activity monitoring.

Looking forward to completing the final phase and sharing more updates soon.
Finally, the admin dashboard feature is ready and has been implemented.

Re: My Website/Web Application Projects by aktem(op): 2:27pm On Jun 20, 2025
Tip for Developers:
Always handle your API keys with care. Avoid putting them directly in your source code. Instead, store them in .env or .env.local files, depending on your setup. This helps prevent accidental exposure, which can lead to issues like unauthorized access, high usage bills, or even data problems. Keeping your credentials safe also protects your users and maintains trust.

Re: My Website/Web Application Projects by aktem(op): 7:50pm On Jun 28, 2025
Project 8: Been busy for a while. I just worked on a website project for a Real estate company. Proper details coming very soon.

Re: My Website/Web Application Projects by aktem(op): 1:01am On Jul 03, 2025
I don't specialize only on react and next.js for my website job, I also design beautiful Wordpress websites like this. Some clients prefer wordpress because of low budget and some prefer it because they want to be in control of the website.

Re: My Website/Web Application Projects by Mekyno(m): 12:55pm On Jul 08, 2025
opj21:
Pls help a brother, how venue is digital regnesishuh Some one what to learn tech from them??
baba, check ut mail pls. i hv smtn to ask u.
tnx
Re: My Website/Web Application Projects by aktem(op): 2:22pm On Jul 12, 2025
Mobile screen, Responsiveness is a major feature to look out for in a website. A fully responsive website will look good on all screens. Both Mobile, meduim and desktop screen.

Re: My Website/Web Application Projects by aktem(op): 8:17am On Jul 26, 2025

Re: My Website/Web Application Projects by AbuUbaiduLLah: 9:34am On Jul 26, 2025
hay boss, can we connect? I am a beginner if you don't mind putting me in your team.
Re: My Website/Web Application Projects by monikulapo: 10:19am On Jul 26, 2025
aktem:
.

I’m excited to share that I’ve successfully integrated the Paystack payment gateway into the food ordering and delivery web application. This was done using Paystack’s API with both the secret and public keys, alongside proper implementation of the callback and webhook URLs to securely handle payment confirmations.

So far, the following core features have been fully implemented:

User Authentication
User Profile Management
Order History Tracking
Secure Online Payments via Paystack
The final major component in progress is the Admin Dashboard, which will handle order management, product updates, and user activity monitoring.

Looking forward to completing the final phase and sharing more updates soon. Feedback is welcome!
Do you have a demo version of this site ?
Re: My Website/Web Application Projects by monikulapo: 10:22am On Jul 26, 2025
Also do you have any samples of wordpress websites you have developed recently ?
1 2 3 4 5 6 7 8 9 Reply

Experienced Full Stack Developer Available For Web Application ProjectsMy MERN Stack Ecommerce Web ApplicationWhich One Should I Focus Between Android App Development And Web Application On234

How Do You Get A CEH / Pentesting Job In Nigeria?Nigerian Stock Exchange (nse)apiProgramming With Android