diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-01-06 19:27:45 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-01-06 19:30:06 +0100 |
| commit | 722ec20bad64d8c69b173c163011d37ad0b55591 (patch) | |
| tree | 0470e54f758d9383fff3fdb4c9b685faa3bde6ae /src/pages/cv.tsx | |
| parent | 1494985a636fe22417615648062f17bc82c35655 (diff) | |
chore: move Main grid to its children
This way I can use full width background for some blocks.
Diffstat (limited to 'src/pages/cv.tsx')
| -rw-r--r-- | src/pages/cv.tsx | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/pages/cv.tsx b/src/pages/cv.tsx index 3faa941..8bd1b0c 100644 --- a/src/pages/cv.tsx +++ b/src/pages/cv.tsx @@ -8,6 +8,7 @@ import Head from 'next/head'; import CVContent, { intro, meta } from '@content/pages/cv.mdx'; import PostHeader from '@components/PostHeader/PostHeader'; import { ArticleMeta } from '@ts/types/articles'; +import styles from '@styles/pages/Page.module.scss'; const CV: NextPageWithLayout = () => { const dates = { @@ -25,12 +26,14 @@ const CV: NextPageWithLayout = () => { <title>{seo.cv.title}</title> <meta name="description" content={seo.cv.description} /> </Head> - <article> + <article + className={`${styles.article} ${styles['article--no-comments']}`} + > <PostHeader intro={intro} meta={pageMeta} title={meta.title} /> - <aside> + <aside className={styles.toc}> <ToC /> </aside> - <div> + <div className={styles.body}> <CVContent /> </div> </article> |
