feat: trial hamburger menu

This commit is contained in:
2022-08-07 11:37:29 -04:00
parent b608ece7ae
commit c9398ebfb0
10 changed files with 79 additions and 19 deletions

7
composables/metadata.ts Normal file
View File

@@ -0,0 +1,7 @@
/**
* Set the page title in the format [title] | Eggworld.
* @param title The title string.
*/
export function useTitle(title: string) {
useHead({ title: `${title} | Eggworld` });
}