2022-08-07 11:37:29 -04:00
|
|
|
/**
|
|
|
|
* Set the page title in the format [title] | Eggworld.
|
|
|
|
* @param title The title string.
|
|
|
|
*/
|
|
|
|
export function useTitle(title: string) {
|
2022-08-10 18:34:01 -04:00
|
|
|
useHead({
|
|
|
|
title: `${title} | Eggworld`,
|
|
|
|
link: [
|
|
|
|
{ rel: "icon", type: "image/x-icon", href: "/favicon.ico" },
|
|
|
|
{
|
|
|
|
rel: "stylesheet",
|
|
|
|
href: "https://cdn.jsdelivr.net/npm/katex@0.16.0/dist/katex.min.css",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
});
|
2022-08-07 11:37:29 -04:00
|
|
|
}
|