Customization
How to modify content and change the design of your deployed website.
Modifying Your Site
Websites deployed with ZeroPack are 100% yours. You can modify the code directly to change whatever you want.
# Modifying Content (Text/Images)
Templates manage content via JSON files in the content/ folder. You can change the text without knowing how to code.
1. Go to your GitHub Repository.
2. Enter the content/ko (Korean) or content/en (English) folder.
3. Click files like home.json, settings.json and click the Pencil icon (Edit).
4. Modification and Commit changes will automatically reflect on the site.
# Modifying Code (Design/Features)
Set up a local development environment for deeper modifications.
1. Clone Repository
`bash
git clone https://github.com/[your-id]/[project-name].git
cd [project-name]
`
2. Install & Run
`bash
npm install
npm run dev
`
3. Edit & Push
Modify code with VS Code, then push to GitHub. Vercel will automatically redeploy.
`bash
git add .
git commit -m "Update design"
git push
`