You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- import React from 'react'
- import Head from "next/head"
- import GoTop from './GoTop'
-
- const Layout = ({ children }) => {
- return(
- <>
- <Head>
- <meta charSet="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1" />
- <title>Thamrin Group</title>
- </Head>
- {children}
-
- <GoTop scrollStepInPx="100" delayInMs="10.50" />
- </>
- )
- }
-
- export default Layout
|