fix(index): icons location
2
dist/index.html
vendored
Before Width: | Height: | Size: 342 B After Width: | Height: | Size: 342 B |
Before Width: | Height: | Size: 419 B After Width: | Height: | Size: 419 B |
Before Width: | Height: | Size: 356 B After Width: | Height: | Size: 356 B |
Before Width: | Height: | Size: 633 B After Width: | Height: | Size: 633 B |
Before Width: | Height: | Size: 760 B After Width: | Height: | Size: 760 B |
Before Width: | Height: | Size: 368 B After Width: | Height: | Size: 368 B |
Before Width: | Height: | Size: 280 B After Width: | Height: | Size: 280 B |
Before Width: | Height: | Size: 659 B After Width: | Height: | Size: 659 B |
Before Width: | Height: | Size: 480 B After Width: | Height: | Size: 480 B |
Before Width: | Height: | Size: 492 B After Width: | Height: | Size: 492 B |
Before Width: | Height: | Size: 704 B After Width: | Height: | Size: 704 B |
Before Width: | Height: | Size: 406 B After Width: | Height: | Size: 406 B |
Before Width: | Height: | Size: 400 B After Width: | Height: | Size: 400 B |
Before Width: | Height: | Size: 2 KiB After Width: | Height: | Size: 2 KiB |
Before Width: | Height: | Size: 451 B After Width: | Height: | Size: 451 B |
|
@ -8,7 +8,7 @@ const { serviceName, serviceUrl } = Astro.props;
|
|||
|
||||
const formattedName = serviceName.toLowerCase().replace(/\s+/g, "-");
|
||||
|
||||
const svgFile = `/src/icons/${formattedName}.svg`;
|
||||
const svgFile = `/icons/${formattedName}.svg`;
|
||||
|
||||
const defaultDomain = "home.arpa";
|
||||
const href = serviceUrl ?? `https://${formattedName}.${defaultDomain}`;
|
||||
|
|
|
@ -10,10 +10,6 @@ const services = [{ serviceName: "Dockge" }, { serviceName: "Dozzle" }, { servic
|
|||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
||||
<title>Homepage</title>
|
||||
<link rel="icon" type="image/x-icon" sizes="192x192" href="/img/favicon.svg" />
|
||||
<link rel="icon" type="image/png" sizes="192x192" href="/img/favicon.svg" />
|
||||
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="/img/favicon.svg" />
|
||||
<link rel="stylesheet" href="/src/css/app.css" />
|
||||
</head>
|
||||
<body class="flex items-center justify-center min-h-screen p-4 bg-neutral-900 text-neutral-300">
|
||||
<div class="grid grid-cols-2 md:grid-cols-4 gap-4">
|
||||
|
|