Update dependencies and remove Globe component

- Updated various dependencies in package.json and pnpm-lock.yaml for improved performance and compatibility.
- Removed the Globe component from the home page, streamlining the layout and reducing complexity.
This commit is contained in:
2025-04-06 22:58:30 +02:00
parent 1153a2003f
commit dc63d1b206
4 changed files with 889 additions and 750 deletions

View File

@@ -6,8 +6,6 @@ const { data: page } = await useAsyncData(`/home/${locale.value}`, () => {
}, {
watch: [locale],
})
const { myLocation, locations } = useVisitors()
</script>
<template>
@@ -17,10 +15,5 @@ const { myLocation, locations } = useVisitors()
<HomeActivity />
<HomeQuote />
<HomeCatchPhrase />
<HomeGlobe
:my-location
:locations
class="mt-8 mx-auto aspect-[1/1] duration-500 md:w-1/2"
/>
</main>
</template>