Никита Круглицкий b3c99a667a Initial commit
2024-11-26 16:15:12 +03:00

38 lines
505 B
Vue

<template>
<AppHeader />
<main>
<HomepageHero />
<HomepageResults />
<HomepageHowItWorks />
<HomepageTariff />
<HomepageReviews />
<HomepageFaq />
<HomepageAnyQuestions />
</main>
<AppFooter />
<ScrollToTop />
</template>
<style lang="scss">
main {
padding-top: 32px;
@include mobile {
padding-top: 16px;
}
> * {
&:not(:last-child) {
margin-bottom: 100px;
@include mobile {
margin-bottom: 24px;
}
}
}
}
</style>