You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
826 B
JavaScript
29 lines
826 B
JavaScript
import React from "react"
|
|
import Layout from "../components/layout"
|
|
import Seo from "../components/seo"
|
|
|
|
import Hero from "../components/Hero"
|
|
import Advantages from "../components/Advantages"
|
|
import Counts from "../components/Counts/Counts"
|
|
import Popular from "../components/Popular"
|
|
import PriceMain from "../components/PriceMain"
|
|
import Reviews from "../components/Reviews/Reviews"
|
|
import Contacts from "../components/Contacts"
|
|
|
|
const IndexPage = () => {
|
|
return (
|
|
<Layout>
|
|
<Hero></Hero>
|
|
<Advantages></Advantages>
|
|
<Counts></Counts>
|
|
<Popular></Popular>
|
|
<PriceMain></PriceMain>
|
|
<Reviews></Reviews>
|
|
<Contacts></Contacts>
|
|
</Layout>
|
|
)
|
|
}
|
|
export const Head = () => <Seo title="Главная" />
|
|
|
|
export default IndexPage
|