Uncomment unnecessary stuff from HomeView

This commit is contained in:
johndoe4 2023-05-27 09:31:56 +02:00
parent 3f03e320d1
commit e9680509bf

View file

@ -27,8 +27,8 @@
<unlogged-introduction :config="config" v-if="config && !isLoggedIn" /> <unlogged-introduction :config="config" v-if="config && !isLoggedIn" />
<!-- Search fields --> <!-- Search fields -->
<search-fields v-model:search="search" v-model:location="location" /> <search-fields v-model:search="search" v-model:location="location" />
<!-- Categories preview --> <!-- Categories preview
<categories-preview /> <categories-preview /> -->
<!-- Welcome back --> <!-- Welcome back -->
<section <section
class="container mx-auto" class="container mx-auto"
@ -135,18 +135,18 @@
> >
</span> </span>
</section> </section>
<!-- Recent events --> <!-- Recent events
<CloseEvents <CloseEvents
@doGeoLoc="performGeoLocation()" @doGeoLoc="performGeoLocation()"
:userLocation="userLocation" :userLocation="userLocation"
:doingGeoloc="doingGeoloc" :doingGeoloc="doingGeoloc"
/> />
<CloseGroups :userLocation="userLocation" @doGeoLoc="performGeoLocation()" /> <CloseGroups :userLocation="userLocation" @doGeoLoc="performGeoLocation()" /> -->
<OnlineEvents /> <OnlineEvents />
<UpcomingEvents v-if="instanceName" :instanceName="instanceName" /> <UpcomingEvents v-if="instanceName" :instanceName="instanceName" />
<LastEvents v-if="instanceName" :instanceName="instanceName" /> <!-- <LastEvents v-if="instanceName" :instanceName="instanceName" /> -->
<!-- Unlogged content section --> <!-- Unlogged content section -->
<picture v-if="!currentUser?.isLoggedIn"> <!-- <picture v-if="!currentUser?.isLoggedIn">
<source <source
media="(max-width: 799px)" media="(max-width: 799px)"
:srcset="`/img/pics/homepage-480w.webp`" :srcset="`/img/pics/homepage-480w.webp`"
@ -178,7 +178,7 @@
alt="" alt=""
loading="lazy" loading="lazy"
/> />
</picture> </picture> -->
<presentation v-if="!currentUser?.isLoggedIn" /> <presentation v-if="!currentUser?.isLoggedIn" />
</template> </template>