Skip to content

Commit 380a667

Browse files
author
Tiffany Le-Nguyen
authored
chore: add prose css (#1133)
* chore: add prose css * chore: comment out extra
1 parent 028ca9a commit 380a667

File tree

4 files changed

+1757
-199
lines changed

4 files changed

+1757
-199
lines changed

demos/default/components/Header.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
export default function Header() {
2-
return <h1>Next Demo!</h1>
2+
return <h1>NextJS on Netlify (imported Header component)</h1>
33
}

demos/default/pages/_app.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
import '../styles/globals.css'
22

33
function MyApp({ Component, pageProps }) {
4-
return <Component {...pageProps} />
4+
return (
5+
<div className='prose ml-14 mt-10 mb-20'>
6+
<Component {...pageProps} />
7+
</div>
8+
)
59
}
610

711
export default MyApp

0 commit comments

Comments
 (0)