Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- 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>Catania Hotel & Rooms</title>
- </Head>
- {children}
-
- <GoTop scrollStepInPx="100" delayInMs="10.50" />
- </>
- )
- }
-
- export default Layout
|