Skip to content

Commit a579017

Browse files
committed
Modify basics
1 parent 238e4bb commit a579017

File tree

5 files changed

+3549
-3908
lines changed

5 files changed

+3549
-3908
lines changed

components/styles.module.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545

4646
.footer {
4747
width: 100%;
48+
height: 200px;
4849
max-width: 1100px;
4950
margin: auto auto 0;
5051
padding: 8px;

pages/_document.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export default class MyDocument extends Document {
66
render() {
77
return (
88
<IconContext.Provider value={{ style: { verticalAlign: 'middle' } }}>
9-
<Html lang='en'>
9+
<Html lang='ko'>
1010
<Head>
1111
<link rel='shortcut icon' href='/favicon.ico' />
1212
<link

site.config.ts

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@ import { siteConfig } from './lib/site-config'
22

33
export default siteConfig({
44
// the site's root Notion page (required)
5-
rootNotionPageId: '7875426197cf461698809def95960ebf',
5+
rootNotionPageId: '23932f24c7ea4071af83cd62f587b305',
66

77
// if you want to restrict pages to a single notion workspace (optional)
88
// (this should be a Notion ID; see the docs for how to extract this)
99
rootNotionSpaceId: null,
1010

1111
// basic site info (required)
12-
name: 'Next.js Notion Starter Kit',
13-
domain: 'nextjs-notion-starter-kit.transitivebullsh.it',
14-
author: 'Travis Fischer',
12+
name: '소프트웨어 엔지니어, 한창완',
13+
domain: 'about.1c1.dev',
14+
author: '1chang1',
1515

1616
// open graph metadata (optional)
17-
description: 'Example Next.js Notion Starter Kit Site',
17+
description: 'Software Engineer, 한창완의 이력서',
1818

1919
// social usernames (optional)
20-
twitter: 'transitive_bs',
21-
github: 'transitive-bullshit',
22-
linkedin: 'fisch2',
20+
// twitter: 'transitive_bs',
21+
github: '1chang1',
22+
linkedin: '1c1',
2323
// newsletter: '#', // optional newsletter URL
2424
// youtube: '#', // optional youtube channel name or `channel/UCGbXXXXXXXXXXXXXXXXXXXXXX`
2525

@@ -49,16 +49,16 @@ export default siteConfig({
4949

5050
// whether to use the default notion navigation style or a custom one with links to
5151
// important pages
52-
navigationStyle: 'default'
53-
// navigationStyle: 'custom',
54-
// navigationLinks: [
55-
// {
56-
// title: 'About',
57-
// pageId: 'f1199d37579b41cbabfc0b5174f4256a'
58-
// },
59-
// {
60-
// title: 'Contact',
61-
// pageId: '6a29ebcb935a4f0689fe661ab5f3b8d1'
62-
// }
63-
// ]
52+
// navigationStyle: 'default'
53+
navigationStyle: 'custom',
54+
navigationLinks: [
55+
{
56+
title: 'About',
57+
pageId: 'f1199d37579b41cbabfc0b5174f4256a'
58+
},
59+
{
60+
title: 'Contact',
61+
pageId: '6a29ebcb935a4f0689fe661ab5f3b8d1'
62+
}
63+
]
6464
})

styles/notion.css

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@
134134

135135
.notion-hr {
136136
margin: 2em 0;
137+
opacity: 0.5;
137138
}
138139

139140
@media only screen and (max-width: 920px) {
@@ -163,7 +164,11 @@
163164

164165
.notion-title {
165166
display: block;
166-
text-align: center;
167+
text-align: start;
168+
letter-spacing: 4px;
169+
text-decoration-line: underline;
170+
text-decoration-style: wavy;
171+
text-underline-offset: 12px;
167172
}
168173

169174
.notion-collection-row {
@@ -382,3 +387,35 @@
382387
.notion-block-260baa77f1e1428b97fb14ac99c7c385 {
383388
display: none;
384389
}
390+
391+
.notion-collection-header {
392+
display: none;
393+
}
394+
395+
.notion-table {
396+
margin-left: 150px;
397+
}
398+
399+
.notion-table-row {
400+
border-color: rgba(128, 128, 128, 0.5);
401+
}
402+
403+
.notion-table-view-header-cell-inner {
404+
border-color: rgba(128, 128, 128, 0.5);
405+
}
406+
407+
.notion-table-cell {
408+
border-color: rgba(128, 128, 128, 0.5);
409+
}
410+
411+
.notion-table-header-inner {
412+
border-color: rgba(128, 128, 128, 0.5);
413+
}
414+
415+
.notion-collection-column-title-icon {
416+
display: none;
417+
}
418+
419+
.title {
420+
font-weight: 700;
421+
}

0 commit comments

Comments
 (0)