Great! Since you've already pushed your ZemenayTech project to GitHub, deploying to Vercel is straightforward. Here's how to do it:
zemenaytech-website or customize./ (default)npm run build (auto-detected).next (auto-detected)zemenaytech-website.vercel.app)That's it! Your ZemenayTech website will be live and automatically redeploy whenever you push changes to your GitHub repository.
The deployment should work perfectly since your project uses standard Next.js 15 with no special server requirements.
Let me give you a 100% working method with troubleshooting steps:
npm i -g vercelvercel logincd your-project-folder
vercelCheck your package.json has correct scripts:
{
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start"
}
}Make sure your globals.css font paths are correct and fonts exist in /public/fonts/
Ensure all images in /public/ folder are properly referenced
What specific error are you getting? Share the error message and I'll give you the exact fix!
The CLI method works 99.9% of the time. If that fails, there's likely a code issue we need to fix first.