Skip to content

Commit bac155e

Browse files
committed
added all new pages
1 parent 7768da5 commit bac155e

File tree

5 files changed

+94
-19
lines changed

5 files changed

+94
-19
lines changed

frontend/pages/database.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import Head from 'next/head'
2+
import Link from 'next/link'
3+
import Layout from '../components/layout'
4+
5+
export default function Database() {
6+
return (
7+
<Layout>
8+
<Head>
9+
<title>Database</title>
10+
</Head>
11+
<h1>Page for Database</h1>
12+
</Layout>
13+
)
14+
}

frontend/pages/games.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import Head from 'next/head'
2+
import Link from 'next/link'
3+
import Layout from '../components/layout'
4+
5+
export default function Games() {
6+
return (
7+
<Layout>
8+
<Head>
9+
<title>Neural Feedback Games</title>
10+
</Head>
11+
<h1>Page for Neural Feedback Games</h1>
12+
</Layout>
13+
)
14+
}

frontend/pages/index.js

Lines changed: 38 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -17,36 +17,55 @@ export default function Home() {
1717
<p className="description">
1818
Work in progress. Support for Muse coming soon!
1919
</p>
20+
<p>
21+
Largely built on the Next.js tutorial, design refresh to come soon!
22+
</p>
23+
24+
2025

2126
<div className="grid">
27+
28+
<Link href = "/learn">
29+
<a className="card">
30+
<h3>Learn &rarr;</h3>
31+
<p>Learn about Neurotech in a visual and interactive way!</p>
32+
</a></Link>
33+
2234
<Link href="/visualizations"><a className="card">
2335
<h3>Visualize EEG &rarr;</h3>
24-
<p> Visualize filtered and processed EEG signals.</p>
36+
<p> Visualize and record filtered and processed EEG signals.</p>
2537
</a></Link>
26-
2738

28-
<a href="https://nextjs.org/learn" className="card">
29-
<h3>Learn &rarr;</h3>
30-
<p>Learn about Next.js in an interactive course with quizzes!</p>
31-
</a>
39+
<Link href = "/modeling">
40+
<a className="card">
41+
<h3>Modeling &rarr;</h3>
42+
<p>Develop models to predict mental state. </p>
43+
</a></Link>
3244

33-
<a
34-
href="https://github.com/vercel/next.js/tree/master/examples"
35-
className="card"
36-
>
37-
<h3>Examples &rarr;</h3>
38-
<p>Discover and deploy boilerplate example Next.js projects.</p>
39-
</a>
45+
<Link href = "/games">
46+
<a className="card">
47+
<h3>Neural Feedback &rarr;</h3>
48+
<p>
49+
Play and develop incredible neural feedback games.
50+
</p>
51+
</a></Link>
52+
53+
<Link href = "/database">
54+
<a className="card">
55+
<h3>Access Data &rarr;</h3>
56+
<p>
57+
Get access to cleaned and curated datasets.
58+
</p>
59+
</a></Link>
4060

41-
<a
42-
href="https://vercel.com/import?filter=next.js&utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
43-
className="card"
44-
>
45-
<h3>Deploy &rarr;</h3>
61+
62+
<a className="card" href = "https://neurotech.berkeley.edu/">
63+
<h3>NT@B &rarr;</h3>
4664
<p>
47-
Instantly deploy your Next.js site to a public URL with Vercel.
65+
Learn more about Neurotech@Berkeley.
4866
</p>
4967
</a>
68+
5069
</div>
5170
</main>
5271

frontend/pages/learn.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import Head from 'next/head'
2+
import Link from 'next/link'
3+
import Layout from '../components/layout'
4+
5+
export default function Learning() {
6+
return (
7+
<Layout>
8+
<Head>
9+
<title>Learning about Neurotech</title>
10+
</Head>
11+
<h1>Page for Learning about Neurotech</h1>
12+
</Layout>
13+
)
14+
}

frontend/pages/modeling.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import Head from 'next/head'
2+
import Link from 'next/link'
3+
import Layout from '../components/layout'
4+
5+
export default function Modeling() {
6+
return (
7+
<Layout>
8+
<Head>
9+
<title>EEG Modeling</title>
10+
</Head>
11+
<h1>Page for EEG Modeling</h1>
12+
</Layout>
13+
)
14+
}

0 commit comments

Comments
 (0)