mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 08:53:49 +01:00
33 lines
1.0 KiB
Vue
33 lines
1.0 KiB
Vue
<template>
|
|
<div class="relative min-h-full">
|
|
<IndexHeroBg />
|
|
<IndexHeroParticles />
|
|
<GNav :landing="true" />
|
|
<IndexHeroRight />
|
|
<div class="relative container mx-auto p-6 md:p-8 max-w-screen-sm lg:max-w-screen-xl">
|
|
<IndexHeroLeft />
|
|
</div>
|
|
<main class="relative container mx-auto max-w-screen-xl px-6 mt-32 mb-24 space-y-16">
|
|
<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 />
|
|
<IndexSponsors />
|
|
</main>
|
|
<GFooter class="relative !bg-transparent dark:!bg-transparent" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: 'landing',
|
|
});
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |