2026-04-16 21:46:03 -03:00
|
|
|
<script setup>
|
2026-04-17 18:49:41 -03:00
|
|
|
import { useLandingEffects } from './landing/useLandingEffects.js'
|
|
|
|
|
import FolioHeader from './landing/FolioHeader.vue'
|
|
|
|
|
import HeroSection from './landing/HeroSection.vue'
|
|
|
|
|
import ForgettingSection from './landing/ForgettingSection.vue'
|
|
|
|
|
import AnatomySection from './landing/AnatomySection.vue'
|
|
|
|
|
import DialectSection from './landing/DialectSection.vue'
|
|
|
|
|
import MechanicsSection from './landing/MechanicsSection.vue'
|
|
|
|
|
import InstallSection from './landing/InstallSection.vue'
|
|
|
|
|
import CatalogFooter from './landing/CatalogFooter.vue'
|
|
|
|
|
import './landing/landing.css'
|
|
|
|
|
|
|
|
|
|
useLandingEffects()
|
2026-04-16 21:46:03 -03:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2026-04-17 18:49:41 -03:00
|
|
|
<div class="mempalace-landing">
|
|
|
|
|
<div class="page">
|
|
|
|
|
<FolioHeader />
|
|
|
|
|
<HeroSection />
|
|
|
|
|
<ForgettingSection />
|
|
|
|
|
<AnatomySection />
|
|
|
|
|
<DialectSection />
|
|
|
|
|
<MechanicsSection />
|
|
|
|
|
<InstallSection />
|
|
|
|
|
<CatalogFooter />
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2026-04-16 21:46:03 -03:00
|
|
|
</template>
|