mirror of https://github.com/nocodb/nocodb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
968 B
38 lines
968 B
2 years ago
|
<script lang="ts" setup>
|
||
|
import { useRoute } from '#imports'
|
||
|
|
||
|
const route = useRoute()
|
||
|
</script>
|
||
|
|
||
2 years ago
|
<template>
|
||
2 years ago
|
<NuxtLayout>
|
||
2 years ago
|
<div
|
||
|
class="min-h-[calc(100vh_-_var(--header-height))] h-auto bg-primary bg-opacity-5 flex flex-col lg:flex-row flex-wrap gap-6 py-6 px-12 pt-65px"
|
||
|
>
|
||
2 years ago
|
<div class="flex-1 justify-end hidden xl:(flex)">
|
||
2 years ago
|
<div>
|
||
|
<GeneralSponsors />
|
||
|
</div>
|
||
2 years ago
|
</div>
|
||
|
|
||
2 years ago
|
<div class="min-w-2/4 xl:max-w-2/4 w-full mx-auto">
|
||
2 years ago
|
<NuxtPage />
|
||
2 years ago
|
</div>
|
||
|
|
||
2 years ago
|
<div class="flex flex-1 justify-between gap-6 lg:block">
|
||
2 years ago
|
<template v-if="route.name === 'index-index'">
|
||
|
<TransitionGroup name="page" mode="out-in">
|
||
|
<div>
|
||
|
<GeneralSocialCard />
|
||
|
</div>
|
||
2 years ago
|
|
||
2 years ago
|
<div class="block mt-0 lg:(!mt-6) xl:hidden">
|
||
|
<GeneralSponsors />
|
||
|
</div>
|
||
|
</TransitionGroup>
|
||
|
</template>
|
||
2 years ago
|
</div>
|
||
|
</div>
|
||
2 years ago
|
</NuxtLayout>
|
||
2 years ago
|
</template>
|