diff --git a/main.go b/main.go index fc1237e..fa2fc0a 100644 --- a/main.go +++ b/main.go @@ -31,9 +31,28 @@ func main() { // It exits immediately on the server side app.RunWhenOnBrowser() + icon := &app.Icon{ + Default: "/web/static/images/icon-small.png", + Large: "/web/static/images/icon.png", + } handler := &app.Handler{ - Name: "Internetica Galactica", - Description: "A 1990's style PWA!", + Name: "Internetica Galactica", + Icon: *icon, + BackgroundColor: "#362730", + ThemeColor: "#362730", + LoadingLabel: "Internetica Galactica", + Title: "Internetica Galactica", + Description: "A 1990's style PWA!", + Author: "Quenten", + Keywords: []string{ + "Based website", + "Cool website", + "PWA", + "Programming", + "Go", "Golang", + "Webassembly", "WASM", + "DutchEllie", "Quenten", + }, Styles: []string{ "/web/static/style.css", "/web/static/adreena.css", diff --git a/web/static/images/icon-small.png b/web/static/images/icon-small.png new file mode 100644 index 0000000..472eca7 Binary files /dev/null and b/web/static/images/icon-small.png differ diff --git a/web/static/images/icon.png b/web/static/images/icon.png new file mode 100644 index 0000000..94f76f4 Binary files /dev/null and b/web/static/images/icon.png differ