update packages
parent
ede77d12e8
commit
91aac993f4
|
@ -4,13 +4,6 @@
|
||||||
htmlAttrs: [
|
htmlAttrs: [
|
||||||
{ lang: 'en'}
|
{ lang: 'en'}
|
||||||
],
|
],
|
||||||
title: 'Inspin Digital | Page Not Found',
|
|
||||||
meta: [
|
|
||||||
{
|
|
||||||
name: 'description',
|
|
||||||
content: `This page does not exist or has been moved.`
|
|
||||||
},
|
|
||||||
],
|
|
||||||
link: [
|
link: [
|
||||||
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' },
|
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/apple-touch-icon.png' },
|
||||||
{ rel: 'icon', sizes: '32x32', href: '/favicon-32x32.png' },
|
{ rel: 'icon', sizes: '32x32', href: '/favicon-32x32.png' },
|
||||||
|
|
|
@ -26,7 +26,7 @@ export default defineNuxtConfig({
|
||||||
token: process.env.DIRECTUS_TOKEN,
|
token: process.env.DIRECTUS_TOKEN,
|
||||||
autoFetch: true,
|
autoFetch: true,
|
||||||
},
|
},
|
||||||
|
|
||||||
css: [
|
css: [
|
||||||
"~/assets/style/style.css",
|
"~/assets/style/style.css",
|
||||||
],
|
],
|
||||||
|
@ -40,6 +40,5 @@ export default defineNuxtConfig({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
telemetry: false,
|
telemetry: false
|
||||||
compatibilityDate: '2024-08-15'
|
|
||||||
})
|
})
|
File diff suppressed because it is too large
Load Diff
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "inspin",
|
"name": "inspin",
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"description": "Shaping the future of online communities.",
|
"description": "Creating a more decentralized web.",
|
||||||
"license": "GPL-3.0-only",
|
"license": "GPL-3.0-only",
|
||||||
"homepage": "https://inspin.io",
|
"homepage": "https://inspin.io",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"build": "nuxt build",
|
"build": "nuxt build",
|
||||||
"dev": "nuxt dev --host",
|
"dev": "nuxt dev",
|
||||||
"generate": "nuxt generate",
|
"generate": "nuxt generate",
|
||||||
"preview": "nuxt preview",
|
"preview": "nuxt preview",
|
||||||
"postinstall": "nuxt prepare"
|
"postinstall": "nuxt prepare"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
|
|
||||||
useHead({
|
useHead({
|
||||||
title: 'Inspin Digital | Contact us',
|
title: 'Inspin Digital | Contact us',
|
||||||
meta: [
|
meta: [
|
||||||
|
|
|
@ -13,16 +13,12 @@
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
import { format, parseISO } from "date-fns";
|
|
||||||
|
|
||||||
let published = parseISO(data.value.published)
|
|
||||||
data.value.published = format(published, 'MMMM dd, YYY')
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="legal">
|
<div class="legal">
|
||||||
<h2>Will be updated this soon.</h2>
|
<div class="heading center">
|
||||||
|
<h2>Will be updated this soon.</h2>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
Loading…
Reference in New Issue