Skip to content

Commit

Permalink
feat(website): add vercel analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
WerdoxDev committed Nov 18, 2024
1 parent 9e72760 commit 9b5372d
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Binary file modified bun.lockb
Binary file not shown.
5 changes: 3 additions & 2 deletions packages/huginn-website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,14 @@
"dependencies": {
"@headlessui/tailwindcss": "^0.2.1",
"@headlessui/vue": "^1.7.22",
"@huginn/shared": "workspace:*",
"@iconify/vue": "^4.1.2",
"@rive-app/canvas": "^2.20.0",
"@vercel/analytics": "^1.4.0",
"@vueuse/components": "^11.0.3",
"@vueuse/core": "^11.0.3",
"vue": "^3.4.37",
"vue-router": "4",
"@huginn/shared": "workspace:*"
"vue-router": "4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.2",
Expand Down
4 changes: 3 additions & 1 deletion packages/huginn-website/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
<script setup lang="ts">
import { Icon } from "@iconify/vue/dist/iconify.js";
import HeaderButton from "./components/HeaderButton.vue";
import { Analytics } from "@vercel/analytics/vue";
import { ref } from "vue";
import HeaderButton from "./components/HeaderButton.vue";
const isMenuOpen = ref(false);
Expand All @@ -15,6 +16,7 @@ function closeMenu(event: MouseEvent) {
</script>

<template>
<Analytics/>
<!-- Header -->
<div
class="fixed top-0 flex w-full items-center md:justify-center border-b border-[#EBEBD3] bg-black/30 px-5 md:px-20 py-4 backdrop-blur-md">
Expand Down

0 comments on commit 9b5372d

Please sign in to comment.