2
0
Fork 0

update packages

main
Ryan Moon 2024-08-15 19:36:26 -04:00
parent ede77d12e8
commit 91aac993f4
6 changed files with 827 additions and 9961 deletions

View File

@ -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' },

View File

@ -40,6 +40,5 @@ export default defineNuxtConfig({
} }
}, },
telemetry: false, telemetry: false
compatibilityDate: '2024-08-15'
}) })

10759
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -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"

View File

@ -1,5 +1,4 @@
<script setup> <script setup>
useHead({ useHead({
title: 'Inspin Digital | Contact us', title: 'Inspin Digital | Contact us',
meta: [ meta: [

View File

@ -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>