Website Transfer Guide

Complete Deployment Documentation

Getting Started

Welcome to Your New Website! 🎉

Congratulations on your purchase! You now own a professional, modern website built with cutting-edge technology (React 19). This guide will walk you through getting your site live, even if you've never done this before.

Complete Deployment Walkthrough

Watch this step-by-step video guide to deploy your website in under 30 minutes.

Need Help? Want a Custom Site?

Have questions about deployment? Want a custom website built for you? Or prefer to have me set up your site for you?

[email protected]Setup service available • Custom site builds • Technical support
What's Included
Complete website source code (all files)
Professional design with modern UI/UX
Mobile-responsive layout
All content and pages as advertised
Affiliate links ready to customize
This comprehensive transfer guide
30 days of email support
What You Need
The website files (delivered via link)
A custom domain name (optional)
30-60 minutes of your time
A computer and internet connection
Fundamentals

First, Let's Understand What You Bought

The Files (Source Code)

The "recipe" for your website

Hosting Platform

Where your site lives online

Live Website

What visitors see

Think of it like this:

Your website is like a house. Right now, you have the BLUEPRINTS (the source code). To make it a REAL HOUSE people can visit, you need to BUILD IT on a PLOT OF LAND (hosting platform).

The Files
All the code that makes your website work. Written in React (a modern web framework). You don't need to understand code to use it.
Hosting
The server that makes your site accessible on the internet. Most hosting platforms have FREE plans perfect for your site.
Live Website
What visitors see when they visit your domain. You can update content, links, and styling anytime.
Decision Time

Choose Your Transfer Path

We've created THREE different paths based on your comfort level with technology. Choose the one that fits you:

RECOMMENDED
PATH 1: EASIEST
"I've Never Done This Before"
Best for: Complete beginners
Time needed: 20-30 minutes
Cost: FREE forever
Method: Deploy to Vercel (1-click)
Technical knowledge: ZERO required
Choose This Path
PATH 2: INTERMEDIATE
"I'm Somewhat Technical"
Best for: Basic web experience
Time needed: 30-45 minutes
Cost: FREE (with optional paid features)
Method: Deploy to Netlify
Technical knowledge: Basic command line helpful
Choose This Path
PATH 3: ADVANCED
"I Want Full Control"
Best for: Developers or full control
Time needed: 45-90 minutes
Cost: Varies (AWS, DigitalOcean, etc.)
Method: Self-hosting on your server
Technical knowledge: SSH, command line, server management
Choose This Path
Path 1: Easiest

Deploy to Vercel (Complete Beginner Guide)

This is the recommended path for most users. Vercel makes deploying React sites incredibly easy, and it's completely FREE for your site.

Common Questions

Rather Have Me Handle This?

Skip the tech headaches. I'll build you a custom website or handle your entire setup.

Path 2: Intermediate

Deploy to Netlify (Intermediate Method)

Netlify offers more control and is perfect if you have some technical experience. Still very user-friendly!

Path 3: Advanced

Self-Hosting (Advanced Method)

For developers who want complete control over their hosting environment. Requires SSH access, command line knowledge, and server management experience.

Prerequisites Required

  • SSH access to your server
  • Basic command line knowledge
  • Understanding of web servers (Nginx/Apache)
  • Familiarity with Linux system administration

Customization

How to Update Content, Links, and Styling

Now that your site is live, here's how to make changes to keep it fresh and optimized.

Updating Affiliate Links

Your affiliate links are centralized in one configuration file for easy updates:

// File: src/config/affiliates.js
export const affiliateLinks = {
  amazon: "YOUR-AMAZON-ID",
  clickbank: "YOUR-CLICKBANK-ID",
  // Add more here
}
  1. Find the file in your repository
  2. Edit and replace placeholder IDs
  3. Commit changes
  4. Site redeploys automatically
Updating Text Content

Most content lives in component files:

src/components/ - Reusable sections
src/pages/ - Full page content
  1. Find the file for the page you want to edit
  2. Edit text between HTML tags
  3. Commit your changes
  4. Site redeploys automatically
Changing Colors/Styling

Your site uses Tailwind CSS. Colors are defined in:

tailwind.config.js

Example of changing primary color:

colors: {
  primary: '#4F46E5', // Change this
}
Adding New Pages
  1. Create a new file in src/pages/
  2. Copy structure from existing page
  3. Update content
  4. Add link to navigation
Not Comfortable Editing Code?

Hire a React developer on Fiverr for $25-100 to make changes for you. Just send them:

  • Your GitHub repository link
  • A description of what you want changed
  • They'll make the changes and you approve
Troubleshooting

Common Issues & Solutions

Run into a problem? Here are solutions to the most common issues buyers encounter.

Learning Resources

Video Walkthrough Tutorials

Visual learner? These video tutorials walk you through each deployment path step-by-step.

Complete Beginner Guide
Watch me deploy this exact site step-by-step (30 minutes)

Follow along as I walk through the entire deployment process from start to finish - GitHub Desktop, Vercel setup, and going live.

Additional Tutorials

How to Update Affiliate Links
Learn how to customize your affiliate links in the config file (5 minutes)

Watch this quick tutorial to learn how to update your affiliate links in the site configuration file. Perfect for beginners!

More Tutorials Coming Soon

Connecting Your Domain
5 minutes

DNS settings made simple

Making Your First Content Change
7 minutes

Edit text and images without breaking anything

Video Library Growing

We now have deployment and affiliate links tutorials available! Domain setup and content editing videos are being recorded and will be added soon.

Help

Get Help When You Need It

You're not alone! Here's how to get support during and after your deployment.

Done Dealing with Tech Headaches?

I'll build you a custom website or handle any project you're stuck on.

You bought the template to save money and time. Smart move.

But if you're thinking "I'd rather just have someone who knows what they're doing build this for me" - I get it.

I've built websites across virtually every niche you can imagine. E-commerce stores, service businesses, digital products, memberships, portfolios - if it needs to exist on the web, I've built it.

Need something custom? Want your template professionally set up? Stuck on technical issues?

Custom websites built from scratch
Complete template setup and deployment
Technical support and troubleshooting
Any niche, any complexity, done right
Email Me Your Project

I typically respond within 2-4 hours

Included Support (30 Days)
Email:[your support email]
Response time:Within 24 hours

What We Can Help With:

  • Deployment and hosting issues
  • Domain connection problems
  • Affiliate link setup
  • Basic content updates
  • Troubleshooting errors

What We Can't Help With:

  • Major redesigns or new features
  • Ongoing site management
  • Marketing or SEO services
  • Custom coding beyond basic fixes
After 30 Days
Paid support available: $50/hour for additional help
Emergency Support

If your site is down and you need immediate help:

Email: [emergency support email]
Subject: Include "URGENT"
Response: Within 4 hours
Hire a Developer
For Developers

Technical Details

Technical specifications for developers who want to understand the stack and structure.

Technology Stack
Framework:React 19
Styling:Tailwind CSS 4
Build Tool:Vite
Package Manager:npm
Node Version:18.x recommended
Build Commands
npm install

Install dependencies

npm run dev

Local development server

npm run build

Production build

npm run preview

Preview production build

File Structure
/your-website
  /public          → Static assets (images, fonts)
  /src
    /components    → Reusable React components
    /pages         → Main page components
    /config        → Configuration files (affiliates, etc.)
    /styles        → Global styles
    /utils         → Helper functions
  package.json     → Dependencies
  vite.config.js   → Build configuration
  tailwind.config.js → Styling configuration
Environment Variables
  • No sensitive data hardcoded
  • Use .env file for API keys
  • Never commit .env to GitHub