Skip to content

Commit 3a8e483

Browse files
author
Corbin Crutchley
committed
chore: remove NextJS scaffolding
1 parent 59b8a82 commit 3a8e483

File tree

8 files changed

+4
-499
lines changed

8 files changed

+4
-499
lines changed

Diff for: pages/_app.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import '../styles/globals.css'
21
import type { AppProps } from 'next/app'
32

43
export default function App({ Component, pageProps }: AppProps) {

Diff for: pages/index.tsx

+4-110
Original file line numberDiff line numberDiff line change
@@ -1,122 +1,16 @@
11
import Head from 'next/head'
2-
import Image from 'next/image'
3-
import { Inter } from '@next/font/google'
4-
import styles from '../styles/Home.module.css'
5-
6-
const inter = Inter({ subsets: ['latin'] })
72

83
export default function Home() {
94
return (
105
<>
116
<Head>
12-
<title>Create Next App</title>
13-
<meta name="description" content="Generated by create next app" />
7+
<title>SacTech Community</title>
8+
<meta name="description" content="Join SacTech - The Sacramento technology community" />
149
<meta name="viewport" content="width=device-width, initial-scale=1" />
1510
<link rel="icon" href="/favicon.ico" />
1611
</Head>
17-
<main className={styles.main}>
18-
<div className={styles.description}>
19-
<p>
20-
Get started by editing&nbsp;
21-
<code className={styles.code}>pages/index.tsx</code>
22-
</p>
23-
<div>
24-
<a
25-
href="https://vercel.com?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
26-
target="_blank"
27-
rel="noopener noreferrer"
28-
>
29-
By{' '}
30-
<Image
31-
src="/vercel.svg"
32-
alt="Vercel Logo"
33-
className={styles.vercelLogo}
34-
width={100}
35-
height={24}
36-
priority
37-
/>
38-
</a>
39-
</div>
40-
</div>
41-
42-
<div className={styles.center}>
43-
<Image
44-
className={styles.logo}
45-
src="/next.svg"
46-
alt="Next.js Logo"
47-
width={180}
48-
height={37}
49-
priority
50-
/>
51-
<div className={styles.thirteen}>
52-
<Image
53-
src="/thirteen.svg"
54-
alt="13"
55-
width={40}
56-
height={31}
57-
priority
58-
/>
59-
</div>
60-
</div>
61-
62-
<div className={styles.grid}>
63-
<a
64-
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
65-
className={styles.card}
66-
target="_blank"
67-
rel="noopener noreferrer"
68-
>
69-
<h2 className={inter.className}>
70-
Docs <span>-&gt;</span>
71-
</h2>
72-
<p className={inter.className}>
73-
Find in-depth information about Next.js features and&nbsp;API.
74-
</p>
75-
</a>
76-
77-
<a
78-
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
79-
className={styles.card}
80-
target="_blank"
81-
rel="noopener noreferrer"
82-
>
83-
<h2 className={inter.className}>
84-
Learn <span>-&gt;</span>
85-
</h2>
86-
<p className={inter.className}>
87-
Learn about Next.js in an interactive course with&nbsp;quizzes!
88-
</p>
89-
</a>
90-
91-
<a
92-
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
93-
className={styles.card}
94-
target="_blank"
95-
rel="noopener noreferrer"
96-
>
97-
<h2 className={inter.className}>
98-
Templates <span>-&gt;</span>
99-
</h2>
100-
<p className={inter.className}>
101-
Discover and deploy boilerplate example Next.js&nbsp;projects.
102-
</p>
103-
</a>
104-
105-
<a
106-
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=default-template&utm_campaign=create-next-app"
107-
className={styles.card}
108-
target="_blank"
109-
rel="noopener noreferrer"
110-
>
111-
<h2 className={inter.className}>
112-
Deploy <span>-&gt;</span>
113-
</h2>
114-
<p className={inter.className}>
115-
Instantly deploy your Next.js site to a shareable URL
116-
with&nbsp;Vercel.
117-
</p>
118-
</a>
119-
</div>
12+
<main>
13+
<p>This website is under construction</p>
12014
</main>
12115
</>
12216
)

Diff for: public/favicon.ico

138 KB
Binary file not shown.

Diff for: public/next.svg

-1
This file was deleted.

Diff for: public/thirteen.svg

-1
This file was deleted.

Diff for: public/vercel.svg

-1
This file was deleted.

0 commit comments

Comments
 (0)