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 #169

Closed
wants to merge 45 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
f5de40c
milestone-1, added typescript blogs
SumedhaKun Oct 24, 2023
88777f5
feat: created navbar component
SumedhaKun Nov 4, 2023
56b9dc1
transfered html code to tsx
SumedhaKun Nov 4, 2023
6a7c6e6
feat: added linking functionality with Navbar component
SumedhaKun Nov 5, 2023
9df38f9
Implemented blogs as components
SumedhaKun Nov 7, 2023
217915a
Implemented portfolio projects as components
SumedhaKun Nov 7, 2023
dd9b56f
removed old project
SumedhaKun Nov 7, 2023
411ed36
made footer into a component and removed navbar styling from global.css
SumedhaKun Nov 13, 2023
0d2f8d8
feat: connected to blogs database and GET called blogs
SumedhaKun Dec 14, 2023
f40ab78
feat: connected to projects database
SumedhaKun Dec 14, 2023
dd9e93c
feat: established connection
SumedhaKun Dec 14, 2023
1eb9b10
feat: added styling to blogs
SumedhaKun Dec 15, 2023
641a8d5
changed name of folder
SumedhaKun Dec 15, 2023
96a923d
feat: added dynamic routes for blogs
SumedhaKun Dec 19, 2023
d4b760a
feat: added dynamic comments
SumedhaKun Dec 20, 2023
054440e
feat: added contact feature
SumedhaKun Dec 22, 2023
9bb2417
feat: implemented add comment
SumedhaKun Dec 22, 2023
828dec8
feat: implemented comments for projects
SumedhaKun Dec 22, 2023
905155a
clean up commit
SumedhaKun Dec 22, 2023
59eb7c2
feat: added positive alert message
SumedhaKun Dec 22, 2023
ed41ffa
Update package-lock.json
SumedhaKun Dec 22, 2023
a1e98bd
Update package-lock.json
SumedhaKun Dec 22, 2023
f37c402
Update package.json
SumedhaKun Dec 22, 2023
29a36bc
Update page.tsx
SumedhaKun Dec 22, 2023
7a56a19
Fix: type error for project
SumedhaKun Dec 22, 2023
ca12620
fix: type error for blog
SumedhaKun Dec 22, 2023
380538e
fix typing errors for contact page
SumedhaKun Dec 22, 2023
f8e8162
fix: updated GET link for blog
SumedhaKun Dec 22, 2023
778a41e
fix: updated link for blog's post endpoint
SumedhaKun Dec 22, 2023
e84d83d
attempted fix: change to VERCEL url
SumedhaKun Dec 22, 2023
01d8112
attempted fix #2
SumedhaKun Dec 22, 2023
a7bad1a
Update page.tsx
SumedhaKun Dec 22, 2023
144187e
added url
SumedhaKun Dec 22, 2023
2d8be3d
Updated url in blog
SumedhaKun Dec 22, 2023
2cbfbaa
Update url #2
SumedhaKun Dec 22, 2023
8f97206
Update url for portfolio
SumedhaKun Dec 22, 2023
ad218db
added print statements
SumedhaKun Dec 22, 2023
88d18f8
Attempted fix: await
SumedhaKun Dec 22, 2023
aa09c0d
fix: added await to portfolio
SumedhaKun Dec 22, 2023
0088972
Update url for portfolio
SumedhaKun Dec 22, 2023
81b4e77
Added env-variable URL
SumedhaKun Dec 22, 2023
487e529
added print for window
SumedhaKun Dec 22, 2023
9bc870d
undo print
SumedhaKun Dec 22, 2023
1dd4f36
Update url
SumedhaKun Dec 22, 2023
107c1ba
Update url for portfolio
SumedhaKun Dec 22, 2023
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
Binary file added .DS_Store
Binary file not shown.
25 changes: 0 additions & 25 deletions README.md

This file was deleted.

36 changes: 36 additions & 0 deletions bootcamp-milestone-3A/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
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
# or
pnpm dev
# or
bun dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.

This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.

## 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.
9 changes: 9 additions & 0 deletions bootcamp-milestone-3A/next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
env: {
MONGO_URI:"mongodb+srv://SumedhaKun:[email protected]/?retryWrites=true&w=majority",
URL:"https://bootcamp-project-2023-bbgd-git-main-sumedha-kundurthis-projects.vercel.app"
},
}

module.exports = nextConfig
Loading