Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ yarn-error.log*
.env.development.local
.env.test.local
.env.production.local

.idea
.vscode
27 changes: 15 additions & 12 deletions pages/index.js
Original file line number Diff line number Diff line change
@@ -1,48 +1,51 @@
import Head from 'next/head'
import Link from "next/link";

export default function Home() {
return (
<div className="container">
<Head>
<title>Create Next App</title>
<title>Computer Club</title>
<link rel="icon" href="/favicon.ico" />
</Head>

<main>
<h1 className="title">
Welcome to <a href="https://nextjs.org">Next.js!</a>
Welcome to Computer Club
</h1>

<p className="description">
Get started by editing <code>pages/index.js</code>
What is <code>Computer Club?</code>
</p>

<div className="grid">
<a href="https://nextjs.org/docs" className="card">
<h3>Documentation &rarr;</h3>
<p>Find in-depth information about Next.js features and API.</p>
<Link href="/whats-is-ccroutine">
<a className="card">
<h3>CCRoutine &rarr;</h3>
<p>What is?</p>
</a>
</Link>

<a href="https://nextjs.org/learn" className="card">
<h3>Learn &rarr;</h3>
<p>Learn about Next.js in an interactive course with quizzes!</p>
<h3>CCClass &rarr;</h3>
<p>What is?</p>
</a>

<a
href="https://github.com/vercel/next.js/tree/master/examples"
className="card"
>
<h3>Examples &rarr;</h3>
<p>Discover and deploy boilerplate example Next.js projects.</p>
<h3>CCJourney &rarr;</h3>
<p>What is?</p>
</a>

<a
href="https://vercel.com/import?filter=next.js&utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
className="card"
>
<h3>Deploy &rarr;</h3>
<h3>CCDedication &rarr;</h3>
<p>
Instantly deploy your Next.js site to a public URL with Vercel.
What is?
</p>
</a>
</div>
Expand Down
20 changes: 20 additions & 0 deletions pages/whats-is-ccroutine.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import Head from 'next/head'
import Link from "next/link";

export default function WhatsIsCcroutine(){
return(
<div className='container'>
<Head>
<title>What Is CCRoutine?</title>
<link rel="icon" href="/favicon.ico" />
</Head>
<main>
<h1>What Is CCRoutine?</h1>
<p>Lorem ipsum sit dolor</p>
<Link href="/">
<button>Back to home</button>
</Link>
</main>
</div>
)
}