-
Notifications
You must be signed in to change notification settings - Fork 8
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
Showing
19 changed files
with
7,935 additions
and
4,505 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
pnpm-lock.yaml |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"tabWidth": 2, | ||
"useTabs": false, | ||
"semi": false | ||
} |
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,7 +1,5 @@ | ||
<template> | ||
|
||
<NuxtLayout> | ||
<NuxtPage /> | ||
<NuxtPage /> | ||
</NuxtLayout> | ||
|
||
</template> | ||
</template> |
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,9 +1,7 @@ | ||
<template> | ||
|
||
<div class="select-none w-full sm:w-fit sm:px-20 rounded-xl max-w-full p-8 flex flex-row items-center bg-[var(--brand-background-old)] justify-center"> | ||
|
||
<slot /> | ||
|
||
</div> | ||
|
||
</template> | ||
<div | ||
class="select-none w-full sm:w-fit sm:px-20 rounded-xl max-w-full p-8 flex flex-row items-center bg-[var(--brand-background-old)] justify-center" | ||
> | ||
<slot /> | ||
</div> | ||
</template> |
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,32 +1,34 @@ | ||
<template> | ||
|
||
<div class="sm:mx-[5%] text-[color:var(--big-text-colour)] select-none font-bold bg-[color:var(--brand-colour)] w-[calc(100%-1.5rem-var(--scrollbar-width))] p-2.5 rounded-3xl flex flex-row items-center text-base justify-between"> | ||
|
||
<NuxtLink class="font-[500] italic text-lg flex items-center flex-row gap-4 tracking-wider" to="/"> | ||
|
||
<img class="h-4" src="/img/logotype.svg"> | ||
|
||
</NuxtLink> | ||
|
||
<NuxtLink class="text-[0.5rem] sm:text-[1rem] internalFont" to="/alternatives"> Alternatives </NuxtLink> | ||
|
||
</div> | ||
|
||
<div | ||
class="sm:mx-[5%] text-[color:var(--big-text-colour)] select-none font-bold bg-[color:var(--brand-colour)] w-[calc(100%-1.5rem-var(--scrollbar-width))] p-2.5 rounded-3xl flex flex-row items-center text-base justify-between" | ||
> | ||
<NuxtLink | ||
class="font-[500] italic text-lg flex items-center flex-row gap-4 tracking-wider" | ||
to="/" | ||
> | ||
<img class="h-4" src="/img/logotype.svg" /> | ||
</NuxtLink> | ||
|
||
<NuxtLink | ||
class="text-[0.5rem] sm:text-[1rem] internalFont" | ||
to="/alternatives" | ||
> | ||
Alternatives | ||
</NuxtLink> | ||
</div> | ||
</template> | ||
|
||
<script setup lang="ts"> | ||
const isBrowseMenuOpen = ref(false) | ||
isBrowseMenuOpen.value = false | ||
function toggleDropdown() { | ||
isBrowseMenuOpen.value = !isBrowseMenuOpen.value | ||
/* if (isBrowseMenuOpen.value) { | ||
/* if (isBrowseMenuOpen.value) { | ||
isMobileMenuOpen.value = false | ||
} */ | ||
} | ||
var name = "ESSENTIAL" | ||
</script> |
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,11 +1,14 @@ | ||
<template> | ||
|
||
<div class="flex flex-col gap-1"> | ||
<span class="font-[500] text-white text-xs text-center"> THANKS FOR READING - WRITTEN BY BLURRYFACE - DESIGNED | ||
BY WORLDWIDEPIXEL • <a class="underline" href="https://github.com/blryface/notessential"> PAGE SOURCE </a></span> | ||
<span class="font-[500] italic text-slate-400 text-xs text-center"> THIS SITE IS IN NO WAY AFFILIATED WITH ESSENTIAL OR | ||
SPARK UNIVERSE </span> | ||
|
||
</div> | ||
|
||
</template> | ||
<div class="flex flex-col gap-1"> | ||
<span class="font-[500] text-white text-xs text-center"> | ||
THANKS FOR READING - WRITTEN BY BLURRYFACE - DESIGNED BY WORLDWIDEPIXEL | ||
• | ||
<a class="underline" href="https://github.com/blryface/notessential"> | ||
PAGE SOURCE | ||
</a></span | ||
> | ||
<span class="font-[500] italic text-slate-400 text-xs text-center"> | ||
THIS SITE IS IN NO WAY AFFILIATED WITH ESSENTIAL OR SPARK UNIVERSE | ||
</span> | ||
</div> | ||
</template> |
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,9 +1,5 @@ | ||
<template> | ||
|
||
<span class="text-sm bg-[#d1d3ff] p-2 rounded-xl select-none"> | ||
|
||
<slot /> | ||
|
||
</span> | ||
|
||
</template> | ||
<span class="text-sm bg-[#d1d3ff] p-2 rounded-xl select-none"> | ||
<slot /> | ||
</span> | ||
</template> |
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,9 +1,7 @@ | ||
<template> | ||
|
||
<div class="flex flex-col gap-2 bg-[color:var(--brand-colour)] p-4 rounded-2xl"> | ||
|
||
<slot /> | ||
|
||
</div> | ||
|
||
</template> | ||
<div | ||
class="flex flex-col gap-2 bg-[color:var(--brand-colour)] p-4 rounded-2xl" | ||
> | ||
<slot /> | ||
</div> | ||
</template> |
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,10 +1,5 @@ | ||
|
||
<template> | ||
|
||
<div class="text-2xl"> | ||
|
||
<slot /> | ||
|
||
</div> | ||
|
||
</template> | ||
<div class="text-2xl"> | ||
<slot /> | ||
</div> | ||
</template> |
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,10 +1,7 @@ | ||
|
||
<template> | ||
|
||
<span class="gap-4 flex flex-row items-center text-[color:var(--big-text-colour)] text-5xl font-bold"> | ||
|
||
<slot /> | ||
|
||
</span> | ||
|
||
</template> | ||
<span | ||
class="gap-4 flex flex-row items-center text-[color:var(--big-text-colour)] text-5xl font-bold" | ||
> | ||
<slot /> | ||
</span> | ||
</template> |
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,10 +1,5 @@ | ||
|
||
<template> | ||
|
||
<span class="flex items-center gap-4"> | ||
|
||
<slot /> | ||
|
||
</span> | ||
|
||
</template> | ||
<span class="flex items-center gap-4"> | ||
<slot /> | ||
</span> | ||
</template> |
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,9 +1,7 @@ | ||
<template> | ||
|
||
<span class="gap-4 flex flex-row font-bold text-2xl bg-[color:var(--brand-colour)] items-center p-4 rounded-2xl select-none duration-[0.4s] active:scale-[0.9]"> | ||
|
||
<slot /> | ||
|
||
</span> | ||
|
||
</template> | ||
<span | ||
class="gap-4 flex flex-row font-bold text-2xl bg-[color:var(--brand-colour)] items-center p-4 rounded-2xl select-none duration-[0.4s] active:scale-[0.9]" | ||
> | ||
<slot /> | ||
</span> | ||
</template> |
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 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,5 +1,5 @@ | ||
// https://nuxt.com/docs/api/configuration/nuxt-config | ||
export default defineNuxtConfig({ | ||
devtools: { enabled: true }, | ||
modules: ["@nuxtjs/tailwindcss", 'nuxt-lucide-icons'] | ||
}) | ||
modules: ["@nuxtjs/tailwindcss", "nuxt-lucide-icons"], | ||
}) |
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
Oops, something went wrong.