ToolNest is a polished Next.js website for browser-based tools, blog content, FAQs, and category browsing.
- Fast, responsive homepage with featured tools
- Blog with search, category filters, and full article pages
- FAQ content designed for SEO and trust
- Tool pages for calculators, developer utilities, image tools, SEO tools, text tools, and security tools
- Server-rendered metadata and clean internal linking
- Next.js 14
- React 18
- TypeScript
- Tailwind CSS
- App Router
Install dependencies first:
npm installRun the development server:
npm run devOpen the site at http://localhost:3000.
Create a production build:
npm run buildStart the production server locally:
npm run startThis repository is ready to deploy to Vercel or any Node.js hosting provider that supports Next.js.
Recommended deployment steps:
- Push the repository to GitHub over SSH.
- Connect the GitHub repo to Vercel.
- Leave environment secrets out of the repo and set them in the hosting dashboard if needed.
- Deploy from the
mainbranch.
If you want to create the Git repository and push it over SSH:
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:MYounus-Codes/digital-tools-website.git
git push -u origin mainIf the repo already exists locally, use this instead:
git add .
git commit -m "Prepare site for deployment"
git push -u origin main- The app is built to work well on mobile and desktop.
- Blog pages include SEO-friendly headings, metadata, and internal links.
- Avoid committing secrets or local environment files.