1df49b0b84
eggworld is a tad immature for me now. so we must call it oeufs. that'll show them.
30 lines
778 B
TypeScript
30 lines
778 B
TypeScript
/**
|
|
* Set the page title in the format [title] | [site name].
|
|
* @param title The title string.
|
|
*/
|
|
export function useTitle(title: string, description?: string) {
|
|
useHead({
|
|
title: `${title} | Oeufs?`,
|
|
meta: [
|
|
{ name: "viewport", content: " width=device-width,initial-scale=1" },
|
|
{ name: "description", content: description ?? "" },
|
|
{ name: "theme-color", content: "#ffffff" },
|
|
],
|
|
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",
|
|
},
|
|
],
|
|
script: [
|
|
{
|
|
defer: true,
|
|
src: "/script.js",
|
|
hid: "stupidEmergencyScript",
|
|
type: "module",
|
|
},
|
|
],
|
|
});
|
|
}
|