mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
68 lines
1.4 KiB
JavaScript
68 lines
1.4 KiB
JavaScript
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;
|