// proxy/index.go package proxy import ( "net/http" ) func ServeIndexPage(w http.ResponseWriter, r *http.Request) { html := ` Secure Site Proxy

🔒 Secure Site Proxy

Access websites securely through encrypted proxy

Security Features:

` w.Header().Set("Content-Type", "text/html; charset=utf-8") w.Write([]byte(html)) }