Skip to content

Commit

Permalink
Updated to nextjs + tailwindcss app w. mdx blog features
Browse files Browse the repository at this point in the history
  • Loading branch information
jamezmca committed Jan 23, 2024
1 parent 9fb5c2d commit 0b9d368
Show file tree
Hide file tree
Showing 368 changed files with 22,498 additions and 24 deletions.
Binary file added .DS_Store
Binary file not shown.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
40 changes: 40 additions & 0 deletions .next/app-build-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"pages": {
"/layout": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
"static/css/app/layout.css",
"static/chunks/app/layout.js"
],
"/page": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
"static/css/app/page.css",
"static/chunks/app/page.js"
],
"/portfolio/page": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
"static/css/app/portfolio/page.css",
"static/chunks/app/portfolio/page.js"
],
"/roadmap/page": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
"static/css/app/roadmap/page.css",
"static/chunks/app/roadmap/page.js"
],
"/blog/[slug]/page": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
"static/css/app/blog/[slug]/page.css",
"static/chunks/app/blog/[slug]/page.js"
],
"/blog/page": [
"static/chunks/webpack.js",
"static/chunks/main-app.js",
"static/css/app/blog/page.css",
"static/chunks/app/blog/page.js"
]
}
}
19 changes: 19 additions & 0 deletions .next/build-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"polyfillFiles": [
"static/chunks/polyfills.js"
],
"devFiles": [],
"ampDevFiles": [],
"lowPriorityFiles": [
"static/development/_buildManifest.js",
"static/development/_ssgManifest.js"
],
"rootMainFiles": [
"static/chunks/webpack.js",
"static/chunks/main-app.js"
],
"pages": {
"/_app": []
},
"ampFirstPages": []
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .next/cache/webpack/client-development/0.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/client-development/1.pack.gz
Binary file not shown.
Binary file not shown.
Binary file added .next/cache/webpack/client-development/11.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/client-development/12.pack.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .next/cache/webpack/client-development/15.pack.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .next/cache/webpack/client-development/19.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/client-development/2.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/client-development/20.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/client-development/21.pack.gz
Binary file not shown.
Binary file not shown.
Binary file added .next/cache/webpack/client-development/3.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/client-development/4.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/client-development/5.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/client-development/6.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/client-development/7.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/client-development/8.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/client-development/9.pack.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .next/cache/webpack/server-development/0.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/server-development/1.pack.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .next/cache/webpack/server-development/12.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/server-development/13.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/server-development/14.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/server-development/15.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/server-development/2.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/server-development/3.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/server-development/4.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/server-development/5.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/server-development/6.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/server-development/7.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/server-development/8.pack.gz
Binary file not shown.
Binary file added .next/cache/webpack/server-development/9.pack.gz
Binary file not shown.
Binary file not shown.
Binary file not shown.
1 change: 1 addition & 0 deletions .next/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"type": "commonjs"}
1 change: 1 addition & 0 deletions .next/react-loadable-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
7 changes: 7 additions & 0 deletions .next/server/app-paths-manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"/roadmap/page": "app/roadmap/page.js",
"/blog/[slug]/page": "app/blog/[slug]/page.js",
"/blog/page": "app/blog/page.js",
"/page": "app/page.js",
"/portfolio/page": "app/portfolio/page.js"
}
1 change: 1 addition & 0 deletions .next/server/app/_not-found_client-reference-manifest.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

275 changes: 275 additions & 0 deletions .next/server/app/blog/[slug]/page.js

Large diffs are not rendered by default.

Loading

0 comments on commit 0b9d368

Please sign in to comment.