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.

26 lines
668 B
JavaScript

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

import React from "react"
import Layout from "../components/layout"
import Seo from "../components/seo"
import Hero from "../components/About/Hero"
import Team from "../components/About/Team/Team"
import Documents from "../components/About/Documents"
import RichText from "../components/About/RichText"
import Contacts from "../components/Contacts"
const AboutPage = () => {
return (
<Layout>
<Hero></Hero>
<Team></Team>
<Documents></Documents>
<RichText></RichText>
<Contacts></Contacts>
</Layout>
)
}
export const Head = () => <Seo title="О нас" />
export default AboutPage