This commit is contained in:
2025-07-04 15:47:24 +02:00
parent 6e52761bb9
commit 214c350fb8
5 changed files with 711 additions and 14 deletions

10
main.go
View File

@ -25,10 +25,10 @@ func main() {
// Home page
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
data := PageData{
CompanyName: "poepiescheet",
CompanyName: "Hogeland Linux",
Title: "Linux Migratie Service - Uw Computer Nieuw Leven Geven",
KVK: "12345678", // Replace with actual KVK number
Email: "info@poepiescheet.nl",
Email: "info@hogelandlinux.nl",
Phone: "+31 6 12345678",
}
@ -41,10 +41,10 @@ func main() {
// Contact page
http.HandleFunc("/contact", func(w http.ResponseWriter, r *http.Request) {
data := PageData{
CompanyName: "poepiescheet",
Title: "Contact - poepiescheet",
CompanyName: "Hogeland Linux",
Title: "Contact - Hogeland Linux",
KVK: "12345678", // Replace with actual KVK number
Email: "info@poepiescheet.nl",
Email: "info@hogelandlinux.nl",
Phone: "+31 6 12345678",
}