40 lines
1.5 KiB
Vue
40 lines
1.5 KiB
Vue
<!--
|
|
|--------------------------------------------------------------------------
|
|
| Agência PSI
|
|
|--------------------------------------------------------------------------
|
|
| Criado e desenvolvido por Leonardo Nohama
|
|
|
|
|
| Tecnologia aplicada à escuta.
|
|
| Estrutura para o cuidado.
|
|
|
|
|
| Arquivo: src/views/pages/Landing.vue
|
|
| Data: 2026
|
|
| Local: São Carlos/SP — Brasil
|
|
|--------------------------------------------------------------------------
|
|
| © 2026 — Todos os direitos reservados
|
|
|--------------------------------------------------------------------------
|
|
-->
|
|
<script setup lang="ts">
|
|
import FeaturesWidget from '@/components/landing/FeaturesWidget.vue';
|
|
import FooterWidget from '@/components/landing/FooterWidget.vue';
|
|
import HeroWidget from '@/components/landing/HeroWidget.vue';
|
|
import HighlightsWidget from '@/components/landing/HighlightsWidget.vue';
|
|
import PricingWidget from '@/components/landing/PricingWidget.vue';
|
|
import TopbarWidget from '@/components/landing/TopbarWidget.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="bg-surface-0 dark:bg-surface-900">
|
|
<div id="home" class="landing-wrapper overflow-hidden">
|
|
<div class="py-6 px-6 mx-0 md:mx-12 lg:mx-20 lg:px-20 flex items-center justify-between relative lg:static">
|
|
<TopbarWidget />
|
|
</div>
|
|
<HeroWidget />
|
|
<FeaturesWidget />
|
|
<HighlightsWidget />
|
|
<PricingWidget />
|
|
<FooterWidget />
|
|
</div>
|
|
</div>
|
|
</template>
|