到目前为止,我们只添加了最少的 React 和 CSS 代码,只是为了说明诸如CSS 模块之类的概念。在我们继续下一节关于数据获取的课程之前,让我们来润色一下我们的页面样式和代码。
components/layout.module.css
首先,打开 components/layout.module.css
并将其内容替换为以下布局和个人资料图片的更精致的样式
.container {
max-width: 36rem;
padding: 0 1rem;
margin: 3rem auto 6rem;
}
.header {
display: flex;
flex-direction: column;
align-items: center;
}
.backToHome {
margin: 3rem 0 0;
}
styles/utils.module.css
其次,让我们创建一组可以在多个组件中重复使用的 CSS 实用程序类(用于文本样式)。
添加一个名为 styles/utils.module.css
的新 CSS 文件,内容如下
.heading2Xl {
font-size: 2.5rem;
line-height: 1.2;
font-weight: 800;
letter-spacing: -0.05rem;
margin: 1rem 0;
}
.headingXl {
font-size: 2rem;
line-height: 1.3;
font-weight: 800;
letter-spacing: -0.05rem;
margin: 1rem 0;
}
.headingLg {
font-size: 1.5rem;
line-height: 1.4;
margin: 1rem 0;
}
.headingMd {
font-size: 1.2rem;
line-height: 1.5;
}
.borderCircle {
border-radius: 9999px;
}
.colorInherit {
color: inherit;
}
.padding1px {
padding-top: 1px;
}
.list {
list-style: none;
padding: 0;
margin: 0;
}
.listItem {
margin: 0 0 1.25rem;
}
.lightText {
color: #666;
}
你可以在整个应用程序中重复使用这些实用程序类,你甚至可以在你的
global.css
文件中使用实用程序类。实用程序类指的是编写 CSS 选择器的方法,而不是方法(例如全局样式、CSS 模块、Sass 等)。详细了解实用程序优先 CSS。
components/layout.js
第三,打开 components/layout.js
并将其内容替换为以下代码,将 Your Name
更改为实际姓名
import Head from 'next/head';
import Image from 'next/image';
import styles from './layout.module.css';
import utilStyles from '../styles/utils.module.css';
import Link from 'next/link';
const name = 'Your Name';
export const siteTitle = 'Next.js Sample Website';
export default function Layout({ children, home }) {
return (
<div className={styles.container}>
<Head>
<link rel="icon" href="/favicon.ico" />
<meta
name="description"
content="Learn how to build a personal website using Next.js"
/>
<meta
property="og:image"
content={`https://og-image.vercel.app/${encodeURI(
siteTitle,
)}.png?theme=light&md=0&fontSize=75px&images=https%3A%2F%2Fassets.vercel.com%2Fimage%2Fupload%2Ffront%2Fassets%2Fdesign%2Fnextjs-black-logo.svg`}
/>
<meta name="og:title" content={siteTitle} />
<meta name="twitter:card" content="summary_large_image" />
</Head>
<header className={styles.header}>
{home ? (
<>
<Image
priority
src="/images/profile.jpg"
className={utilStyles.borderCircle}
height={144}
width={144}
alt=""
/>
<h1 className={utilStyles.heading2Xl}>{name}</h1>
</>
) : (
<>
<Link href="/">
<Image
priority
src="/images/profile.jpg"
className={utilStyles.borderCircle}
height={108}
width={108}
alt=""
/>
</Link>
<h2 className={utilStyles.headingLg}>
<Link href="/" className={utilStyles.colorInherit}>
{name}
</Link>
</h2>
</>
)}
</header>
<main>{children}</main>
{!home && (
<div className={styles.backToHome}>
<Link href="/">← Back to home</Link>
</div>
)}
</div>
);
}
以下是新增内容
meta
标签(如 og:image
),用于描述页面的内容home
属性,它将调整标题和图像的大小home
为 false
,则底部显示“返回首页”链接next/image
添加图像,这些图像使用 priority 属性进行预加载pages/index.js
最后,让我们更新首页。
打开 pages/index.js
并将其内容替换为
import Head from 'next/head';
import Layout, { siteTitle } from '../components/layout';
import utilStyles from '../styles/utils.module.css';
export default function Home() {
return (
<Layout home>
<Head>
<title>{siteTitle}</title>
</Head>
<section className={utilStyles.headingMd}>
<p>[Your Self Introduction]</p>
<p>
(This is a sample website - you’ll be building a site like this on{' '}
<a href="https://nextjs.net.cn/learn">our Next.js tutorial</a>.)
</p>
</section>
</Layout>
);
}
然后将 [Your Self Introduction]
替换为你的自我介绍。以下是用作者资料作为示例
就是这样!我们现在有了经过润色的布局代码,并且可以继续学习数据获取课程了。
在我们结束本课之前,让我们在下一页讨论一些与 Next.js 的 CSS 支持相关的实用技巧。
快速回顾:为什么 CSS 模块很有用?