Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

20 строки
482 B

  1. import React from 'react'
  2. import Head from "next/head"
  3. import GoTop from './GoTop'
  4. const Layout = ({ children }) => {
  5. return(
  6. <>
  7. <Head>
  8. <meta charSet="utf-8" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1" />
  10. <title>Thamrin Group</title>
  11. </Head>
  12. {children}
  13. <GoTop scrollStepInPx="100" delayInMs="10.50" />
  14. </>
  15. )
  16. }
  17. export default Layout