Skip to content

Commit 9770393

Browse files
committed
feat(update): fix git commits lol
1 parent 7b1e9a7 commit 9770393

32 files changed

+2336
-221
lines changed

.gitignore

Lines changed: 19 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,35 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2-
3-
# dependencies
1+
# deps
42
/node_modules
5-
/.pnp
6-
.pnp.*
7-
.yarn/*
8-
!.yarn/patches
9-
!.yarn/plugins
10-
!.yarn/releases
11-
!.yarn/versions
123

13-
# testing
14-
/coverage
4+
# generated content
5+
.contentlayer
6+
.content-collections
7+
.source
158

16-
# next.js
9+
# test & build
10+
/coverage
1711
/.next/
1812
/out/
19-
20-
# production
2113
/build
14+
*.tsbuildinfo
2215

2316
# misc
2417
.DS_Store
2518
*.pem
26-
27-
# debug
19+
/.pnp
20+
.pnp.js
2821
npm-debug.log*
2922
yarn-debug.log*
3023
yarn-error.log*
31-
.pnpm-debug.log*
32-
33-
# env files (can opt-in for committing if needed)
34-
.env*
3524

36-
# vercel
25+
# others
26+
.env
27+
.env*.local
3728
.vercel
38-
39-
# typescript
40-
*.tsbuildinfo
4129
next-env.d.ts
30+
31+
bun.lock
32+
bun.lockb
33+
package-lock.json
34+
yarn.lock
35+
pnpm-lock.yaml

.vscode/extensions.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"recommendations": [
3+
"heybourn.headwind",
4+
"aaron-bond.better-comments",
5+
"alefragnani.bookmarks",
6+
"coenraads.bracket-pair-colorizer-2",
7+
"streetsidesoftware.code-spell-checker",
8+
"naumovs.color-highlight",
9+
"mikestead.dotenv",
10+
"usernamehw.errorlens",
11+
"dsznajder.es7-react-js-snippets",
12+
"dbaeumer.vscode-eslint",
13+
"mhutchie.git-graph",
14+
"graphql.vscode-graphql",
15+
"vincaslt.highlight-matching-tag",
16+
"oderwat.indent-rainbow",
17+
"vtrois.gitmoji-vscode",
18+
"silvenon.mdx",
19+
"cardinal90.multi-cursor-case-preserve",
20+
"foxundermoon.next-js",
21+
"pulkitgangwar.nextjs-snippets",
22+
"christian-kohler.path-intellisense",
23+
"csstools.postcss",
24+
"esbenp.prettier-vscode",
25+
"prisma.prisma",
26+
"willluke.nextjs",
27+
"spikespaz.vscode-smoothtype",
28+
"bradlc.vscode-tailwindcss",
29+
"britesnow.vscode-toggle-quotes",
30+
"pflannery.vscode-versionlens",
31+
"pmneo.tsimporter"
32+
]
33+
}

.vscode/settings.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"editor.formatOnPaste": true,
4+
"WillLuke.nextjs.addTypesOnSave": true,
5+
"WillLuke.nextjs.hasPrompted": true,
6+
"cSpell.words": [
7+
"ahooks",
8+
"appcues",
9+
"BLOGPOST",
10+
"Chauhan",
11+
"clsx",
12+
"Cobe",
13+
"Comeau",
14+
"CordX",
15+
"eslintcache",
16+
"frontmatter",
17+
"Gajjar",
18+
"gnored",
19+
"headlessui",
20+
"KARRY",
21+
"Knowuser",
22+
"mapbox",
23+
"Mixpanel",
24+
"networkidle",
25+
"nextui",
26+
"Nuxt",
27+
"opengraph",
28+
"Parag",
29+
"qout",
30+
"raxter",
31+
"rehype",
32+
"Saleshandy",
33+
"semibold",
34+
"tailwindcss",
35+
"Tawk",
36+
"Trustpilot",
37+
"typecheck",
38+
"unist",
39+
"useportal",
40+
"usequerystate",
41+
"Userback",
42+
"ZUMTHOR"
43+
]
44+
}

bun.lock

Lines changed: 279 additions & 52 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "portfolio",
2+
"name": "@codemeapixel/website",
33
"version": "0.1.0",
44
"private": true,
55
"scripts": {
@@ -9,19 +9,31 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12+
"@radix-ui/react-dialog": "^1.0.5",
13+
"@radix-ui/react-dropdown-menu": "^2.0.6",
14+
"@radix-ui/react-tooltip": "^1.0.7",
15+
"axios": "^1.7.9",
16+
"clsx": "^2.1.1",
17+
"devicons": "^1.8.0",
18+
"framer-motion": "^11.15.0",
1219
"react": "^19.0.0",
1320
"react-dom": "^19.0.0",
21+
"react-icons": "^5.4.0",
1422
"next": "15.3.0"
1523
},
1624
"devDependencies": {
17-
"typescript": "^5",
25+
"@eslint/eslintrc": "^3",
1826
"@types/node": "^20",
1927
"@types/react": "^19",
2028
"@types/react-dom": "^19",
21-
"@tailwindcss/postcss": "^4",
22-
"tailwindcss": "^4",
29+
"postcss": "^8.4.49",
30+
"autoprefixer": "^10.4.20",
2331
"eslint": "^9",
2432
"eslint-config-next": "15.3.0",
25-
"@eslint/eslintrc": "^3"
26-
}
27-
}
33+
"tailwindcss": "^3.4.17",
34+
"tailwindcss-animate": "^1.0.7",
35+
"tailwind-merge": "^2.6.0",
36+
"typescript": "^5"
37+
},
38+
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
39+
}

postcss.config.mjs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
const config = {
2-
plugins: ["@tailwindcss/postcss"],
1+
export default {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
36
};
4-
5-
export default config;

public/Infinity/BotPages.png

362 KB
Loading

public/Infinity/Home.png

364 KB
Loading

public/NodeByte/Home.png

378 KB
Loading

public/NodeByte/MCServers.png

207 KB
Loading

0 commit comments

Comments
 (0)