forked from MyArtverse-Project/MyArtverse
-
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
fd938e6
commit ae7e1e1
Showing
9 changed files
with
113 additions
and
79 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
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,23 @@ | ||
<script setup lang="ts"> | ||
const props = defineProps<{ | ||
link?: string | ||
external?: boolean | ||
layout?: "default" | "headless" | ||
}>() | ||
</script> | ||
|
||
<template> | ||
<button v-if="!props.link"> | ||
<slot /> | ||
</button> | ||
<NuxtLink v-else :to="link"> | ||
<slot /> | ||
</NuxtLink> | ||
</template> | ||
|
||
<style lang="scss" scoped> | ||
button, | ||
a { | ||
@apply px-5 py-2.5 rounded-3xl hover:bg-purple-700 border-base-200 border transition-colors; | ||
} | ||
</style> |
This file was deleted.
Oops, something went wrong.
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.
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,33 +1,32 @@ | ||
{ | ||
"name": "@myfursona/website", | ||
"private": true, | ||
"version": "0.0.0", | ||
"scripts": { | ||
"build": "nuxt build", | ||
"dev": "nuxt dev", | ||
"generate": "nuxt generate", | ||
"preview": "nuxt preview" | ||
}, | ||
"devDependencies": { | ||
"@fontsource/inter": "^4.5.14", | ||
"@fontsource/open-sans": "^4.5.14", | ||
"@iconify-prerendered/vue-fa6-brands": "^0.22.1680070484", | ||
"@iconify-prerendered/vue-fa6-solid": "^0.22.1680070530", | ||
"@nuxt/image-edge": "^1.0.0-27919678.2f5b64b", | ||
"@nuxtjs/apollo": "^5.0.0-alpha.5", | ||
"@nuxtjs/color-mode": "^3.2.0", | ||
"@pinia/nuxt": "^0.4.6", | ||
"@tailwindcss/typography": "^0.5.9", | ||
"autoprefixer": "^10.4.13", | ||
"gsap": "^3.11.4", | ||
"lucide-vue-next": "^0.130.1", | ||
"nuxt": "^3.0.0", | ||
"pinia": "^2.0.29", | ||
"postcss": "^8.4.20", | ||
"sass": "^1.57.1", | ||
"tailwindcss": "^3.2.4" | ||
}, | ||
"dependencies": { | ||
"@vercel/analytics": "^0.1.11" | ||
} | ||
} | ||
"name": "@myfursona/website", | ||
"private": true, | ||
"version": "0.0.0", | ||
"scripts": { | ||
"build": "nuxt build", | ||
"dev": "nuxt dev", | ||
"generate": "nuxt generate", | ||
"preview": "nuxt preview" | ||
}, | ||
"dependencies": { | ||
"@vercel/analytics": "^0.1.11" | ||
}, | ||
"devDependencies": { | ||
"@fontsource/inter": "^4.5.14", | ||
"@fontsource/open-sans": "^4.5.14", | ||
"@iconify-prerendered/vue-fa6-brands": "^0.22.1680070484", | ||
"@nuxt/image-edge": "^1.0.0-27919678.2f5b64b", | ||
"@nuxtjs/apollo": "^5.0.0-alpha.5", | ||
"@nuxtjs/color-mode": "^3.2.0", | ||
"@pinia/nuxt": "^0.4.6", | ||
"@tailwindcss/typography": "^0.5.9", | ||
"autoprefixer": "^10.4.13", | ||
"gsap": "^3.11.4", | ||
"lucide-vue-next": "^0.170.0", | ||
"nuxt": "^3.0.0", | ||
"pinia": "^2.0.29", | ||
"postcss": "^8.4.20", | ||
"sass": "^1.57.1", | ||
"tailwindcss": "^3.2.4" | ||
} | ||
} |
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 @@ | ||
import { inject } from "@vercel/analytics" | ||
|
||
export default () => { | ||
export default defineNuxtPlugin(() => { | ||
inject({ debug: true }) | ||
} | ||
}) |
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