Skip to content

Commit 70917c9

Browse files
authored
Merge pull request #4 from maxwlang/modernize-portfolio
Modernize Portfolio
2 parents 04ef57e + 75eb36a commit 70917c9

File tree

114 files changed

+4252
-6592
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+4252
-6592
lines changed

.eslintrc

Lines changed: 0 additions & 6 deletions
This file was deleted.

.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": ["next/core-web-vitals", "next/typescript"]
3+
}

.gitignore

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,12 @@
33
# dependencies
44
/node_modules
55
/.pnp
6-
.pnp.js
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
712

813
# testing
914
/coverage
@@ -24,11 +29,12 @@ npm-debug.log*
2429
yarn-debug.log*
2530
yarn-error.log*
2631

27-
# local env files
28-
.env.local
29-
.env.development.local
30-
.env.test.local
31-
.env.production.local
32+
# env files (can opt-in for committing if needed)
33+
.env*
3234

3335
# vercel
3436
.vercel
37+
38+
# typescript
39+
*.tsbuildinfo
40+
next-env.d.ts

README.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
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).
1+
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
22

33
## Getting Started
44

@@ -8,15 +8,17 @@ First, run the development server:
88
npm run dev
99
# or
1010
yarn dev
11+
# or
12+
pnpm dev
13+
# or
14+
bun dev
1115
```
1216

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

15-
You can start editing the page by modifying `pages/index.js`. The page auto-updates as you edit the file.
16-
17-
[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`.
19+
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
1820

19-
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.
21+
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
2022

2123
## Learn More
2224

@@ -25,10 +27,10 @@ To learn more about Next.js, take a look at the following resources:
2527
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
2628
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
2729

28-
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
30+
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
2931

3032
## Deploy on Vercel
3133

3234
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.
3335

34-
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
36+
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.

components/Portfolio/Accomplishment/Accomplishment.module.scss

Whitespace-only changes.

components/Portfolio/Accomplishment/index.js

Lines changed: 0 additions & 39 deletions
This file was deleted.

components/Portfolio/Certification/Certification.module.scss

Lines changed: 0 additions & 29 deletions
This file was deleted.

components/Portfolio/Certification/index.js

Lines changed: 0 additions & 55 deletions
This file was deleted.

components/Portfolio/Header/Header.module.scss

Lines changed: 0 additions & 77 deletions
This file was deleted.

components/Portfolio/Header/index.js

Lines changed: 0 additions & 70 deletions
This file was deleted.

0 commit comments

Comments
 (0)