-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
652138e
commit 5f3c186
Showing
4 changed files
with
33 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,41 @@ | ||
<script setup lang="ts"> | ||
useHead({ | ||
link: [{ rel: "icon", type: "image/png", href: "/favicon.webp" }], | ||
}); | ||
useSeoMeta({ | ||
ogImage: "/favicon.webp ", | ||
themeColor: "#e8a946", | ||
ogTitle: "GreasyMac", | ||
ogDescription: "Welcome to the Greasy Gang", | ||
ogImage: "/favicon.webp", | ||
}); | ||
</script> | ||
<template> | ||
<div> | ||
<div class="bg-primary"> | ||
<header | ||
class="absolute w-screen mx-auto flex items-center justify-between font-bebas p-4 text-lg transition-colors" | ||
> | ||
<NuxtImg src="/gg.png" class="w-11 h-11"></NuxtImg> | ||
<div class="flex gap-x-3"> | ||
<NuxtLink | ||
href="/about" | ||
class="text-white hover:text-gray-100 text-xl underline underline-offset-6" | ||
>Home</NuxtLink | ||
> | ||
<NuxtLink | ||
href="https://greasymac.fandom.com/wiki/GreasyMac_Wiki" | ||
external | ||
class="text-white text-xl hover:text-gray-100" | ||
>About</NuxtLink | ||
> | ||
</div> | ||
<div class="flex my-auto"> | ||
<NuxtLink | ||
href="/about" | ||
class="bg-#ff4040 hover:bg-#e03a3a text-white hover:text-gray-100 h-min px-5 py-1 rounded-lg text-white" | ||
>Login</NuxtLink | ||
> | ||
</div> | ||
</header> | ||
<NuxtPage /> | ||
</div> | ||
</template> | ||
<style> | ||
body { | ||
background-color: #e8a946; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes