feat: rebrand site to 'oeufs'

eggworld is a tad immature for me now. so we must call it oeufs. that'll show them.
This commit is contained in:
eggy
2023-12-29 17:00:13 -05:00
parent a4c9d71cb1
commit 1df49b0b84
2 changed files with 4 additions and 4 deletions

View File

@@ -1,13 +1,13 @@
/**
* Set the page title in the format [title] | Eggworld.
* 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} | Eggworld`,
title: `${title} | Oeufs?`,
meta: [
{ name: "viewport", content: " width=device-width,initial-scale=1" },
{ name: "description", content: description || "" },
{ name: "description", content: description ?? "" },
{ name: "theme-color", content: "#ffffff" },
],
link: [