Skip to content

Commit c38105a

Browse files
committed
Update Now page
Signed-off-by: Kai Devrim <kai@devrim.tech>
1 parent 80b3783 commit c38105a

File tree

1 file changed

+52
-41
lines changed

1 file changed

+52
-41
lines changed

pages/now.tsx

Lines changed: 52 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,58 @@
1-
import type { NextPage } from 'next';
2-
import Head from 'next/head';
3-
import Link from 'next/link';
4-
import Navbar from '../components/navbar/navbar';
1+
import type { NextPage } from "next";
2+
import Head from "next/head";
3+
import Link from "next/link";
4+
import Navbar from "../components/navbar/navbar";
55
const Now: NextPage = () => {
6-
return (
7-
<div>
8-
<Head>
9-
<title>Kai&apos;s Wacky Website</title>
10-
<meta name="description" content="Generated by create next app" />
11-
<link rel="icon" href="/favicon.ico" />
12-
</Head>
13-
<main>
14-
<Navbar />
15-
<NowPage />
16-
</main>
17-
</div>
18-
)
19-
}
6+
return (
7+
<div>
8+
<Head>
9+
<title>Kai&apos;s Wacky Website</title>
10+
<meta name="description" content="Generated by create next app" />
11+
<link rel="icon" href="/favicon.ico" />
12+
</Head>
13+
<main>
14+
<Navbar />
15+
<NowPage />
16+
</main>
17+
</div>
18+
);
19+
};
2020

2121
function NowPage() {
22-
return (
23-
<div className="content pages">
24-
<h1> Now </h1>
25-
<h3> Here is what I am up to nowadays </h3>
26-
<ul className="now-list">
27-
<h3> Finishing Junior Year of High School: </h3>
28-
<li> I am currently at home in sweet old San Jose. </li>
29-
<li> Currently taking Statistics, English 11, Physics, Multimedia Arts, Spanish 3, United States History, and Physical Education. </li>
30-
<li> Dreaming about heading up North to University of Washington, University of Waterloo, or University of British Columbia for college. </li>
31-
<h3> Learning about Computers: </h3>
32-
<li> Studying for the CompTIA A+ exam. </li>
33-
<li> Volunteering for Coding Organizations like CodeDay Bay Area. </li>
34-
<li> Programming whatever I find interesting. </li>
35-
<li> Participating in Hack Club. </li>
36-
<h3> Entertaining Myself: </h3>
37-
<li> Watching a lot on my Plex Server. </li>
38-
<li> Playing lots of video games on my modded PS4, 3DS, or Switch. </li>
39-
<li> Having fun with my dog, Mocha. </li>
40-
</ul>
41-
<p> Last updated 2022-03-10 </p>
42-
<p> Credits to <Link href="https://nownownow.com"> Derek Sivers </Link> </p>
43-
</div>
44-
)
22+
return (
23+
<div className="content pages">
24+
<h1> Now </h1>
25+
<h3> Here is what I am up to nowadays </h3>
26+
<ul className="now-list">
27+
<h3> Finishing Junior Year of High School: </h3>
28+
<li> I am currently at home in sweet old San Jose. </li>
29+
<li>
30+
Currently taking Statistics, English 11, Physics, Multimedia Arts,
31+
Spanish 3, United States History, and Physical Education.
32+
</li>
33+
<li>
34+
Dreaming about heading up North to University of Washington,
35+
University of Waterloo, or University of British Columbia for college.
36+
</li>
37+
<h3> Learning about Computers: </h3>
38+
<li> Studying for the CompTIA A+ exam. </li>
39+
<li> Volunteering for Coding Organizations like CodeDay Bay Area. </li>
40+
<li> Programming whatever I find interesting. </li>
41+
<li> Participating in Hack Club. </li>
42+
<h3> Entertaining Myself: </h3>
43+
<li> Watching a lot on my Plex Server. </li>
44+
<li>
45+
Playing lots of video games on my MacBook, or modded PS4, 3DS, or
46+
Switch.
47+
</li>
48+
<li> Having fun with my dog, Mocha. </li>
49+
</ul>
50+
<p> Last updated 2022-03-10 </p>
51+
<p>
52+
Credits to <Link href="https://nownownow.com"> Derek Sivers </Link>
53+
</p>
54+
</div>
55+
);
4556
}
4657

4758
export default Now;

0 commit comments

Comments
 (0)