Compare commits

...

4 Commits

Author SHA1 Message Date
owenrees fbc704dc30 center nav items on firefox as well 2026-06-13 22:17:19 +02:00
owenrees c082a356fd add multiple favicons 2026-06-13 21:30:25 +02:00
owenrees 6120c48377 noindex nofollow on callback route 2026-06-13 20:56:22 +02:00
owenrees 99f8aa8ac2 exclude callback route from sitemap 2026-06-13 20:51:06 +02:00
11 changed files with 23 additions and 1 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 859 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

+1
View File
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
+1 -1
View File
@@ -6,7 +6,7 @@ import logo from "@/assets/images/logo.svg?url";
export default function Header() { export default function Header() {
return ( return (
<header> <header>
<nav className="w-full max-w-screen-2xl place-self-center p-8"> <nav className="w-full max-w-screen-2xl mx-auto p-8">
<div className="container mx-auto flex items-center justify-between"> <div className="container mx-auto flex items-center justify-between">
<div className="flex items-center"> <div className="flex items-center">
<Link to="/" className="flex flex-row items-center justify-center"> <Link to="/" className="flex flex-row items-center justify-center">
+14
View File
@@ -42,6 +42,20 @@ export const Route = createRootRoute({
{ {
rel: "icon", rel: "icon",
href: "/favicon.svg", href: "/favicon.svg",
type: "image/svg+xml",
},
{
rel: "icon",
href: "/favicon.ico",
sizes: "32x32",
},
{
rel: "apple-touch-icon",
href: "/apple-touch-icon.png",
},
{
rel: "manifest",
href: "/site.webmanifest",
}, },
], ],
}), }),
+4
View File
@@ -8,6 +8,10 @@ const callbackSchema = z.object({
}); });
export const Route = createFileRoute("/callback")({ export const Route = createFileRoute("/callback")({
head: () => ({
meta: [{ name: "robots", content: "noindex, nofollow" }],
}),
validateSearch: (search) => callbackSchema.parse(search), validateSearch: (search) => callbackSchema.parse(search),
beforeLoad: ({ search }) => { beforeLoad: ({ search }) => {
+3
View File
@@ -25,6 +25,9 @@ const config = defineConfig({
prerender: { prerender: {
enabled: false, enabled: false,
}, },
sitemap: {
exclude: true,
},
}, },
], ],
sitemap: { sitemap: {