-
Notifications
You must be signed in to change notification settings - Fork 1.8k
/
Copy pathindex.js
37 lines (35 loc) · 970 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import Head from 'next/head';
import Image from 'next/image';
import buildspaceLogo from '../assets/buildspace-logo.png';
const Home = () => {
return (
<div className="root">
<Head>
<title>GPT-3 Writer | buildspace</title>
</Head>
<div className="container">
<div className="header">
<div className="header-title">
<h1>sup, insert your headline here</h1>
</div>
<div className="header-subtitle">
<h2>insert your subtitle here</h2>
</div>
</div>
</div>
<div className="badge-container grow">
<a
href="https://buildspace.so/builds/ai-writer"
target="_blank"
rel="noreferrer"
>
<div className="badge">
<Image src={buildspaceLogo} alt="buildspace logo" />
<p>build with buildspace</p>
</div>
</a>
</div>
</div>
);
};
export default Home;