github.com/greenpau/go-authcrunch@v1.1.4/pkg/authn/ui/apps.go (about) 1 // Copyright 2022 Paul Greenberg greenpau@outlook.com 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package ui 16 17 import ( 18 "embed" 19 ) 20 21 var ( 22 //go:embed profile 23 embedFileSystem embed.FS 24 embedPages = map[string]string{ 25 "profile/": "profile/index.html", 26 "profile/fonts/Inter-Black.ttf": "profile/fonts/Inter-Black.ttf", 27 "profile/fonts/Inter-Bold.ttf": "profile/fonts/Inter-Bold.ttf", 28 "profile/fonts/Inter-ExtraBold.ttf": "profile/fonts/Inter-ExtraBold.ttf", 29 "profile/fonts/Inter-ExtraLight.ttf": "profile/fonts/Inter-ExtraLight.ttf", 30 "profile/fonts/Inter-Light.ttf": "profile/fonts/Inter-Light.ttf", 31 "profile/fonts/Inter-Medium.ttf": "profile/fonts/Inter-Medium.ttf", 32 "profile/fonts/Inter-Regular.ttf": "profile/fonts/Inter-Regular.ttf", 33 "profile/fonts/Inter-SemiBold.ttf": "profile/fonts/Inter-SemiBold.ttf", 34 "profile/fonts/Inter-Thin.ttf": "profile/fonts/Inter-Thin.ttf", 35 "profile/fonts/fonts.css": "profile/fonts/fonts.css", 36 "profile/images/banner.jpg": "profile/images/banner.jpg", 37 "profile/assets/index-DLdtk2Ib.css": "profile/assets/index-DLdtk2Ib.css", 38 "profile/assets/index-DOtSzC14.js": "profile/assets/index-DOtSzC14.js", 39 "profile/favicon.ico": "profile/favicon.ico", 40 "profile/logo192.png": "profile/logo192.png", 41 "profile/logo512.png": "profile/logo512.png", 42 "profile/manifest.json": "profile/manifest.json", 43 "profile/robots.txt": "profile/robots.txt", 44 "profile/index.html": "profile/index.html", 45 } 46 )