This commit is contained in:
2025-08-20 16:40:26 +02:00
parent eaa051a4e2
commit 6ce105b498
3 changed files with 4 additions and 80 deletions

View File

@@ -1,78 +0,0 @@
#!/bin/bash
# VEDA Static Site Deployment Script
# This script will deploy your Next.js static site to the production server
echo "🚀 VEDA Static Site Deployment"
echo "================================"
# Colors for output
RED='\033[0;31m'
GREEN='\033[0;32m'
YELLOW='\033[1;33m'
NC='\033[0m' # No Color
# Check if out directory exists
if [ ! -d "out" ]; then
echo -e "${RED}❌ Error: 'out' directory not found. Run 'npm run build' first.${NC}"
exit 1
fi
echo -e "${GREEN}✅ Found 'out' directory with static files${NC}"
echo ""
echo "📋 DEPLOYMENT INSTRUCTIONS:"
echo "==========================="
echo ""
echo -e "${YELLOW}1. Copy these files to your server:${NC}"
echo " - Upload the 'out' directory"
echo " - Upload the 'Caddyfile'"
echo ""
echo -e "${YELLOW}2. Run these commands on your server:${NC}"
echo ""
cat << 'EOF'
# Create the web directory if it doesn't exist
sudo mkdir -p /var/www/veda
# Copy the static files (adjust path as needed)
sudo cp -r out/* /var/www/veda/out/ 2>/dev/null || {
sudo mkdir -p /var/www/veda/out
sudo cp -r out/* /var/www/veda/out/
}
# Set proper permissions
sudo chown -R www-data:www-data /var/www/veda/ 2>/dev/null || sudo chown -R caddy:caddy /var/www/veda/
# Backup current Caddyfile
sudo cp /etc/caddy/Caddyfile /etc/caddy/Caddyfile.backup.$(date +%Y%m%d_%H%M%S) 2>/dev/null
# Update Caddyfile (adjust path if different)
sudo cp Caddyfile /etc/caddy/Caddyfile
# Test Caddy configuration
sudo caddy validate --config /etc/caddy/Caddyfile
# Reload Caddy
sudo systemctl reload caddy
# Check Caddy status
sudo systemctl status caddy
EOF
echo ""
echo -e "${YELLOW}3. Test your deployment:${NC}"
echo " https://www2.veda-egypt.com/"
echo " https://www2.veda-egypt.com/story/"
echo " https://www2.veda-egypt.com/dahabiyas/"
echo " https://www2.veda-egypt.com/experiences/"
echo ""
echo -e "${GREEN}📁 Files ready for deployment:${NC}"
ls -la out/ | head -10
echo " ... and more"
echo ""
echo -e "${GREEN}✅ All files prepared! Copy the commands above and run them on your server.${NC}"

View File

@@ -26,8 +26,10 @@ export function Hero() {
</div> </div>
<div className="mx-auto max-w-4xl lg:mx-0"> <div className="mx-auto max-w-4xl lg:mx-0">
<p className="my-4 font-normal text-pretty text-gray-950 sm:text-lg"> <p className="my-4 font-normal text-pretty text-gray-950 sm:text-lg">
Discover ancient Egypt with VEDA and feel its special energies across the enchanting Nile river with our cruises, retreats, & more. Stepping on veda boats feels like sailing into the magic of the River Nile. The sacred vibes of Egypt and the river will touch your soul forever.Discover ancient Egypt with VEDA and feel its special energies across the enchanting Nile river with our cruises, retreats, & more.
Stepping on veda boats feels like sailing into the magic of the River Nile. The sacred vibes of Egypt and the river will touch your soul forever. </p>
<p className="my-4 font-normal text-pretty text-gray-950 sm:text-lg">
</p> </p>
</div> </div>
</div> </div>

Binary file not shown.