/
githubmirror
/
next.js
Обзор
Документация
Войти
/
githubmirror
/
next.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
canary
examples/with-magic/components/layout.js
67 строк
1 KB
hrmny
chore: update prettier to 3.2.5 (#65092)
08 май 2024, 22:47
Не верифицирован
08 май 2024, 22:47
64b718c
Код
Авторство
О чём код?
import Head from "next/head"; import Header from "./header"; const Layout = (props) => ( <> <Head> <title>Magic</title> <link rel="icon" href="/favicon.ico" /> </Head> <Header /> <main> <div className="container">{props.children}</div> </main> <footer> <a href="https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app" target="_blank" rel="noopener noreferrer" > Powered by <img src="/vercel.svg" alt="Vercel Logo" /> </a> </footer> <style jsx global>{` *, *::before, *::after { box-sizing: border-box; } body { margin: 0; color: #333; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, Noto Sans, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; } .container { max-width: 42rem; margin: 0 auto; padding: 2rem 1.25rem; } footer { width: 100%; height: 100px; border-top: 1px solid #eaeaea; display: flex; justify-content: center; align-items: center; } `}</style> </> ); export default Layout;