37 lines
687 B
Vue
37 lines
687 B
Vue
<template>
|
|
<div class="app">
|
|
<SiteHeader />
|
|
<main class="container">
|
|
<TariffCards />
|
|
<PriceTable />
|
|
<ServicesGrid />
|
|
<Footer />
|
|
</main>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import SiteHeader from './components/SiteHeader.vue'
|
|
import TariffCards from './components/TariffCards.vue'
|
|
import PriceTable from './components/PriceTable.vue'
|
|
import ServicesGrid from './components/ServicesGrid.vue'
|
|
import Footer from './components/Footer.vue'
|
|
</script>
|
|
|
|
<style>
|
|
body {
|
|
margin: 0;
|
|
font-family: Arial, sans-serif;
|
|
color: #000;
|
|
}
|
|
|
|
.app {
|
|
background: #ffd400;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
margin: 0 auto;
|
|
padding: 40px 60px 80px;
|
|
}
|
|
</style> |