Пре альфа макета сайта
This commit is contained in:
37
src/App.vue
Normal file
37
src/App.vue
Normal file
@@ -0,0 +1,37 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user