Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Milestone 3A + 3B + 4 - Angela Chen #201

Open
wants to merge 30 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
e4d1457
feat: copy files from Starter Pack and add blog entries (Milestone 1)
anvch Oct 23, 2023
7e5fa5d
feat: add tsconfig.json
anvch Oct 23, 2023
06db305
Add files via upload
anvch Oct 30, 2023
829aa01
feat: add tsconfig.json
anvch Oct 23, 2023
97ecb9a
Merge branch 'main' of https://github.com/anvch/bootcamp-project-2023
anvch Nov 7, 2023
56618b4
feat: convert html and css to react (milestone 2)
anvch Nov 7, 2023
3ec2619
feat: add back milestone 1 (w json files)
anvch Nov 10, 2023
325eea0
Add files via upload
anvch Nov 10, 2023
06fdd17
feat: use spread operator for blogs
anvch Nov 11, 2023
5351cf5
fix: renamed folder to milestone-2 for clarity
anvch Nov 17, 2023
27d2e31
feat: connected mongodb for blogs
anvch Dec 22, 2023
3681ade
feat: connect mongodb to portfolio page with project documents
anvch Dec 22, 2023
9ccf109
fix: changed folder name
anvch Dec 22, 2023
ac27705
fix: initializing milestone 3b starting state (rename folder, delete …
anvch Dec 22, 2023
a59b873
feat: added dynamic routing and comment functionality
anvch Dec 22, 2023
43a7e00
feat: attempted to add POST req functionality for comments and emailJ…
anvch Dec 23, 2023
efbd00a
fix: pushing .env file
anvch Dec 23, 2023
d11ed55
fix: &apos, add key
anvch Dec 23, 2023
567cc8b
fix: '
anvch Dec 23, 2023
78fd35e
fix: removed redundant comment/route.ts
anvch Dec 23, 2023
96c4c99
fix: clarifying types
anvch Dec 23, 2023
f5c46a4
fix: changed Blog type to IBlog in BlogPreview params
anvch Dec 23, 2023
5956553
fix: adding css
anvch Dec 23, 2023
b4619f9
fix: reverted css changes
anvch Dec 23, 2023
a322a4b
fix: fixing add comment functionality
anvch Jan 16, 2024
a59c980
fix: add comment functionality blogs
anvch Jan 16, 2024
612ecc0
feat: add contact form functionality
anvch Jan 16, 2024
dfed314
fix: EmailBody import statement
anvch Jan 16, 2024
73117dc
fix: vercel fetch blogs
anvch Jan 17, 2024
b5e4704
fix: console log slug
anvch Jan 17, 2024
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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/trash
25 changes: 0 additions & 25 deletions README.md

This file was deleted.

2 changes: 2 additions & 0 deletions milestone-3b/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# .env
MONGO_URI = mongodb+srv://angelachenv:[email protected]/?retryWrites=true&w=majority
3 changes: 3 additions & 0 deletions milestone-3b/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": "next/core-web-vitals"
}
38 changes: 38 additions & 0 deletions milestone-3b/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

# .env
4 changes: 4 additions & 0 deletions milestone-3b/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}

module.exports = nextConfig
Loading