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

@ -8,7 +8,7 @@ const props = defineProps<{ activeItem?: string }>();
<template> <template>
<nav class="flex items-center justify-between"> <nav class="flex items-center justify-between">
<ul> <ul>
<li class="home-text"><a href="/">Eggworld</a></li> <li class="home-text"><a href="/">Oeufs?</a></li>
<li v-for="(item, index) in navItems" :key="index"> <li v-for="(item, index) in navItems" :key="index">
<a :href="item.href" class="flex gap-2"> <a :href="item.href" class="flex gap-2">
<img <img

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. * @param title The title string.
*/ */
export function useTitle(title: string, description?: string) { export function useTitle(title: string, description?: string) {
useHead({ useHead({
title: `${title} | Eggworld`, title: `${title} | Oeufs?`,
meta: [ meta: [
{ name: "viewport", content: " width=device-width,initial-scale=1" }, { name: "viewport", content: " width=device-width,initial-scale=1" },
{ name: "description", content: description || "" }, { name: "description", content: description ?? "" },
{ name: "theme-color", content: "#ffffff" }, { name: "theme-color", content: "#ffffff" },
], ],
link: [ link: [