initial commit

This commit is contained in:
lucas
2022-05-03 02:53:19 -07:00
commit 455ab524fa
23 changed files with 7672 additions and 0 deletions

3
.eslintrc.json Normal file
View File

@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}

32
.gitignore vendored Normal file
View File

@@ -0,0 +1,32 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.js
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# local env files
.env*.local
# vercel
.vercel

34
README.md Normal file
View File

@@ -0,0 +1,34 @@
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.js`.
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
## Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.

0
components/Navbar.ts Normal file
View File

22
lib/firebase.js Normal file
View File

@@ -0,0 +1,22 @@
import firebase from 'firebase/app'
import 'firebase/auth'
import 'firebase/firestore'
import 'firebase/storage'
const firebaseConfig = {
apiKey: "AIzaSyD6lA0slEHkUipbfnI0-0spc3f9f-AoG1A",
authDomain: "nextfire-app-2a259.firebaseapp.com",
projectId: "nextfire-app-2a259",
storageBucket: "nextfire-app-2a259.appspot.com",
messagingSenderId: "142000164976",
appId: "1:142000164976:web:32d8bf06008a6eaf15a4b5",
measurementId: "G-T3703M428N"
};
if (!firebase.apps.length) {
firebase.initializeApp(firebaseConfig)
}
export const auth = firebase.auth();
export const firestore = firebase.filestore();
export const storage = firebase.storage();

0
lib/hooks.ts Normal file
View File

5
next-env.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />
// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.

6
next.config.js Normal file
View File

@@ -0,0 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
}
module.exports = nextConfig

7055
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

24
package.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "nextfire-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"firebase": "^9.7.0",
"firebase-hooks": "^0.0.1",
"next": "12.1.6",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"devDependencies": {
"@types/node": "^17.0.31",
"@types/react": "^18.0.8",
"eslint": "8.14.0",
"eslint-config-next": "12.1.6"
}
}

View File

@@ -0,0 +1,7 @@
export default function PostPage({ }) {
return (
<main>
</main>
)
}

View File

@@ -0,0 +1,7 @@
export default function Page({ }) {
return (
<main>
</main>
)
}

8
pages/_app.js Normal file
View File

@@ -0,0 +1,8 @@
import '../styles/globals.css'
function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />
}
export default MyApp

7
pages/admin/[slug].js Normal file
View File

@@ -0,0 +1,7 @@
export default function AdminPostEdit({ }) {
return (
<main>
<h1>Edit Post</h1>
</main>
)
}

7
pages/admin/index.js Normal file
View File

@@ -0,0 +1,7 @@
export default function AdminPostsPage({ }){
return (
<main>
</main>
)
}

5
pages/api/hello.js Normal file
View File

@@ -0,0 +1,5 @@
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
export default function handler(req, res) {
res.status(200).json({ name: 'John Doe' })
}

7
pages/enter.js Normal file
View File

@@ -0,0 +1,7 @@
export default function EnterPage({ }) {
return (
<main>
<h1>Sign Up</h1>
</main>
)
}

11
pages/index.js Normal file
View File

@@ -0,0 +1,11 @@
import Head from 'next/head'
import Image from 'next/image'
import styles from '../styles/Home.module.css'
export default function Home() {
return (
<div>
<h1>Hello world!</h1>
</div>
)
}

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

4
public/vercel.svg Normal file
View File

@@ -0,0 +1,4 @@
<svg width="283" height="64" viewBox="0 0 283 64" fill="none"
xmlns="http://www.w3.org/2000/svg">
<path d="M141.04 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.46 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM248.72 16c-11.04 0-19 7.2-19 18s8.96 18 20 18c6.67 0 12.55-2.64 16.19-7.09l-7.65-4.42c-2.02 2.21-5.09 3.5-8.54 3.5-4.79 0-8.86-2.5-10.37-6.5h28.02c.22-1.12.35-2.28.35-3.5 0-10.79-7.96-17.99-19-17.99zm-9.45 14.5c1.25-3.99 4.67-6.5 9.45-6.5 4.79 0 8.21 2.51 9.45 6.5h-18.9zM200.24 34c0 6 3.92 10 10 10 4.12 0 7.21-1.87 8.8-4.92l7.68 4.43c-3.18 5.3-9.14 8.49-16.48 8.49-11.05 0-19-7.2-19-18s7.96-18 19-18c7.34 0 13.29 3.19 16.48 8.49l-7.68 4.43c-1.59-3.05-4.68-4.92-8.8-4.92-6.07 0-10 4-10 10zm82.48-29v46h-9V5h9zM36.95 0L73.9 64H0L36.95 0zm92.38 5l-27.71 48L73.91 5H84.3l17.32 30 17.32-30h10.39zm58.91 12v9.69c-1-.29-2.06-.49-3.2-.49-5.81 0-10 4-10 10V51h-9V17h9v9.2c0-5.08 5.91-9.2 13.2-9.2z" fill="#000"/>
</svg>

After

Width:  |  Height:  |  Size: 1.1 KiB

116
styles/Home.module.css Normal file
View File

@@ -0,0 +1,116 @@
.container {
padding: 0 2rem;
}
.main {
min-height: 100vh;
padding: 4rem 0;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.footer {
display: flex;
flex: 1;
padding: 2rem 0;
border-top: 1px solid #eaeaea;
justify-content: center;
align-items: center;
}
.footer a {
display: flex;
justify-content: center;
align-items: center;
flex-grow: 1;
}
.title a {
color: #0070f3;
text-decoration: none;
}
.title a:hover,
.title a:focus,
.title a:active {
text-decoration: underline;
}
.title {
margin: 0;
line-height: 1.15;
font-size: 4rem;
}
.title,
.description {
text-align: center;
}
.description {
margin: 4rem 0;
line-height: 1.5;
font-size: 1.5rem;
}
.code {
background: #fafafa;
border-radius: 5px;
padding: 0.75rem;
font-size: 1.1rem;
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono,
Bitstream Vera Sans Mono, Courier New, monospace;
}
.grid {
display: flex;
align-items: center;
justify-content: center;
flex-wrap: wrap;
max-width: 800px;
}
.card {
margin: 1rem;
padding: 1.5rem;
text-align: left;
color: inherit;
text-decoration: none;
border: 1px solid #eaeaea;
border-radius: 10px;
transition: color 0.15s ease, border-color 0.15s ease;
max-width: 300px;
}
.card:hover,
.card:focus,
.card:active {
color: #0070f3;
border-color: #0070f3;
}
.card h2 {
margin: 0 0 1rem 0;
font-size: 1.5rem;
}
.card p {
margin: 0;
font-size: 1.25rem;
line-height: 1.5;
}
.logo {
height: 1em;
margin-left: 0.5rem;
}
@media (max-width: 600px) {
.grid {
width: 100%;
flex-direction: column;
}
}

282
styles/globals.css Normal file
View File

@@ -0,0 +1,282 @@
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400&display=swap');
:root {
--color-bg: #eef0f1;
--color-text: #08090a;
--color-blue: #3b49df;
--color-red: #df3b3b;
--color-green: #3bdf72;
--color-gray: #b5bdc4;
}
html,
body {
padding: 0;
margin: 0;
font-family: 'Noto Sans', sans-serif;
background-color: var(--color-bg);
color: var(--color-text);
margin-top: 50px;
}
main {
padding: 1rem 10vw;
}
h1 {
font-size: 2rem;
}
h2 {
font-size: 1.5rem;
}
h2 {
font-size: 1.25rem;
}
a {
color: inherit;
text-decoration: none;
cursor: pointer;
}
* {
box-sizing: border-box;
}
img {
max-width: 100%;
}
input {
display: inline-block;
outline: none;
border: none;
font-size: 1.5rem;
width: 100%;
padding: 5px 10px;
}
fieldset {
border: none;
padding: 1rem 0;
font-size: 1.25rem;
}
code {
overflow-x: scroll;
}
/* Navbar */
.navbar {
height: 70px;
width: 100%;
background: white;
color: var(--colors-text);
position: fixed;
top: 0;
padding: 0 10vw;
font-weight: bold;
border-bottom: 1px solid var(--color-gray);
z-index: 99;
}
.navbar ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
align-items: center;
justify-content: space-between;
height: 100%;
}
.navbar img {
border-radius: 50%;
width: 50px;
height: 50px;
cursor: pointer;
}
.navbar li {
border-radius: 50%;
}
/* Buttons */
.btn,
button {
background-color: var(--color-gray);
border: none;
color: var(--color-text);
padding: 1rem 2rem;
display: flex;
align-items: center;
text-align: center;
justify-content: center;
text-decoration: none;
font-family: 'Noto Sans', sans-serif;
font-weight: bold;
border-radius: 0.25rem;
cursor: pointer;
margin: 0.5rem 1rem 0.5rem 0;
}
@media only screen and (max-width: 768px) {
button {
padding: 0.5rem 1rem;
font-size: 0.8rem;
}
}
button:hover {
filter: brightness(90%);
}
button:disabled,
button[disabled] {
filter: brightness(80%);
cursor: not-allowed;
}
button.btn-blue {
background-color: var(--color-blue);
color: white;
}
button.btn-red {
background-color: var(--color-red);
color: white;
}
button.btn-green {
background-color: var(--color-green);
color: white;
}
button.btn-google {
background-color: white;
color: var(--color-text);
}
.btn-google img {
width: 30px;
margin-right: 10px;
}
button.btn-logo {
background-color: var(--color-text);
color: white;
text-transform: uppercase;
font-size: 1.5rem;
padding: 0.5rem 1rem;
}
/* Cards */
.card {
padding: 2rem;
margin: 1rem 0;
background-color: white;
border: 1px solid var(--color-gray);
border-radius: 8px;
}
.card footer {
display: flex;
}
.card-img-center {
width: 20%;
display: block;
margin: auto;
border-radius: 50%;
max-width: 150px;
}
.card-info {
color: white;
background: var(--color-blue);
}
/* Loader */
.loader {
border: 10px solid var(--color-bg);
border-top: 10px solid var(--color-blue);
border-radius: 50%;
width: 50px;
height: 50px;
animation: spin 2s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
/* File uploads */
input[type="file"] {
display: none;
}
.upload-snippet {
width: 75%;
margin-left: auto;
background: white;
padding: 5px;
margin: 5px 0;
}
/* Utilities */
.push-left {
margin-left: auto;
}
.text-sm {
font-size: 0.85rem;
}
.text-danger {
font-weight: bold;
color: var(--color-red);
}
.text-success {
font-weight: bold;
color: var(--color-green);
}
.text-info {
font-weight: bold;
color: var(--color-blue);
}
.box {
display: flex;
justify-content: space-between;
}
.box-center {
display: flex;
flex-direction: column;
align-content: center;
text-align: center;
}
.hidden {
display: none;
}

30
tsconfig.json Normal file
View File

@@ -0,0 +1,30 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
, "lib/firebase.js" ],
"exclude": [
"node_modules"
]
}