jointrashposs/pages/index.vue

32 lines
1.0 KiB
Vue
Raw Normal View History

2023-07-08 10:36:02 +02:00
<template>
2023-07-11 19:19:32 +02:00
<div class="relative min-h-full">
2023-07-08 19:23:27 +02:00
<IndexHeroBg />
2023-07-15 10:34:06 +02:00
<GNav :landing="true" />
2023-07-08 19:23:27 +02:00
<IndexHeroRight />
<div class="relative container mx-auto p-6 md:p-8 max-w-screen-sm lg:max-w-screen-xl">
<IndexHeroLeft />
</div>
2023-07-11 19:19:32 +02:00
<main class="relative container mx-auto max-w-screen-xl px-6 mt-32 mb-24 space-y-16">
2023-07-08 19:23:27 +02:00
<IndexKeyFeatures id="learnMore" />
<IndexDecenterized />
<GDots class="w-[95%] mx-auto text-accent-600" :space="30" />
<IndexFeatures />
<GDots class="w-[95%] mx-auto text-accent-600" :space="30" />
<IndexGetStarted id="getStarted" />
<GDots class="w-[95%] mx-auto text-accent-600" :space="30" />
<IndexDonation />
2023-07-09 20:09:50 +02:00
<IndexSponsors />
2023-07-08 19:23:27 +02:00
</main>
2023-07-12 05:57:32 +02:00
<GFooter class="relative !bg-transparent dark:!bg-transparent" />
2023-07-08 10:36:02 +02:00
</div>
</template>
<script setup lang="ts">
2023-07-08 19:23:27 +02:00
definePageMeta({
layout: 'landing',
});
2023-07-08 10:36:02 +02:00
</script>
<style scoped>
</style>