Skip to content

Commit

Permalink
It's begun.
Browse files Browse the repository at this point in the history
  • Loading branch information
lanberb committed Jul 7, 2024
0 parents commit 78ffb33
Show file tree
Hide file tree
Showing 12 changed files with 1,715 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# 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
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## Portfolio
⚠️⚠️⚠️⚠️⚠️ ⚠️
⚠️ ⚠️ ⚠️
⚠️ ⚠️ ⚠️ ⚠️⚠️⚠️⚠️ ⚠️ ⚠️⚠️⚠️⚠️⚠️ ⚠️⚠️⚠️ ⚠️ ⚠️ ⚠️ ⚠️⚠️⚠️⚠️
⚠️ ⚠️⚠️⚠️⚠️⚠️ ⚠️ ⚠️ ⚠️⚠️⚠️ ⚠️ ⚠️ ⚠️ ⚠️ ⚠️ ⚠️ ⚠️⚠️ ⚠️
⚠️ ⚠️ ⚠️⚠️⚠️ ⚠️⚠️ ⚠️ ⚠️⚠️⚠️⚠️⚠️⚠️ ⚠️ ⚠️ ⚠️ ⚠️ ⚠️ ⚠️
⚠️ ⚠️ ⚠️ ⚠️ ⚠️ ⚠️ ⚠️⚠️⚠️⚠️⚠️⚠️ ⚠️ ⚠️⚠️ ⚠️ ⚠️
⚠️⚠️⚠️⚠️⚠️ ⚠️⚠️⚠️ ⚠️⚠️ ⚠️⚠️ ⚠️⚠️⚠️⚠️ ⚠️⚠️⚠️⚠️⚠️ ⚠️ ⚠️⚠️⚠️ ⚠️ ⚠️ ⚠️
⚠️ ⚠️
⚠️⚠️⚠️⚠️⚠️
19 changes: 19 additions & 0 deletions biome.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"$schema": "https://biomejs.dev/schemas/1.8.3/schema.json",
"organizeImports": {
"enabled": true
},
"formatter": {
"indentStyle": "space",
"indentWidth": 2
},
"linter": {
"enabled": true,
"rules": {
"recommended": true
}
},
"files": {
"ignore": ["node_modules"]
}
}
9 changes: 9 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
compiler: {
styledComponents: true,
},
};

export default nextConfig;
Loading

0 comments on commit 78ffb33

Please sign in to comment.