21 lines
383 B
Vue
21 lines
383 B
Vue
|
<script setup>
|
||
|
useHead({
|
||
|
title: 'Inspin Digital | Products',
|
||
|
meta: [
|
||
|
{
|
||
|
name: 'description',
|
||
|
content: `Inspin Digital develops SaaS platforms that redefine industry standards.`
|
||
|
},
|
||
|
],
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="projects">
|
||
|
<ProductsHero />
|
||
|
|
||
|
<ProductsCards />
|
||
|
|
||
|
<!-- <ProductsGoals /> -->
|
||
|
</div>
|
||
|
</template>
|