Skip to content

Commit 7a2943c

Browse files
Created homepage
1 parent 4fa9564 commit 7a2943c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

Homepage.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
export default function Homepage() {
2+
return (
3+
<main
4+
style={{
5+
minHeight: '100vh',
6+
backgroundColor: 'white',
7+
padding: '24px'
8+
}}
9+
>
10+
<h1 style={{ color: '#05102C', marginBottom: '40px' }}>
11+
Placeholder text for homepage
12+
</h1>
13+
14+
15+
16+
<div style={{ height: '1500px' }}></div>
17+
</main>
18+
);
19+
}

0 commit comments

Comments
 (0)