Skip to content

Commit

Permalink
image
Browse files Browse the repository at this point in the history
  • Loading branch information
szweibel committed Aug 3, 2023
1 parent 0bbb303 commit 22f8d27
Show file tree
Hide file tree
Showing 13 changed files with 84 additions and 7 deletions.
22 changes: 20 additions & 2 deletions .next/build-manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
"static/chunks/polyfills.js"
],
"devFiles": [
"static/chunks/webpack.js",
"static/chunks/react-refresh.js"
],
"ampDevFiles": [],
Expand All @@ -13,7 +12,26 @@
],
"rootMainFiles": [],
"pages": {
"/_app": []
"/": [
"static/chunks/webpack.js",
"static/chunks/main.js",
"static/chunks/pages/index.js"
],
"/404": [
"static/chunks/webpack.js",
"static/chunks/main.js",
"static/chunks/pages/404.js"
],
"/_app": [
"static/chunks/webpack.js",
"static/chunks/main.js",
"static/chunks/pages/_app.js"
],
"/_error": [
"static/chunks/webpack.js",
"static/chunks/main.js",
"static/chunks/pages/_error.js"
]
},
"ampFirstPages": []
}
Binary file modified .next/cache/webpack/client-development/0.pack
Binary file not shown.
Binary file modified .next/cache/webpack/client-development/1.pack
Binary file not shown.
Binary file modified .next/cache/webpack/client-development/index.pack
Binary file not shown.
Binary file modified .next/cache/webpack/client-development/index.pack.old
Binary file not shown.
Binary file modified .next/cache/webpack/server-development/0.pack
Binary file not shown.
Binary file modified .next/cache/webpack/server-development/index.pack
Binary file not shown.
21 changes: 20 additions & 1 deletion .next/react-loadable-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1,20 @@
{}
{
"../components/Header.js -> ../components/Drawer": {
"id": "../components/Header.js -> ../components/Drawer",
"files": [
"static/chunks/components_Drawer_js.js"
]
},
"_app.js -> ../components/Footer": {
"id": "_app.js -> ../components/Footer",
"files": [
"static/chunks/components_Footer_js.js"
]
},
"index.js -> ../components/MenuItem": {
"id": "index.js -> ../components/MenuItem",
"files": [
"static/chunks/components_MenuItem_js.js"
]
}
}
2 changes: 1 addition & 1 deletion .next/server/middleware-build-manifest.js

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

2 changes: 1 addition & 1 deletion .next/server/middleware-react-loadable-manifest.js

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

8 changes: 7 additions & 1 deletion .next/server/pages-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1,7 @@
{}
{
"/_app": "pages/_app.js",
"/_error": "pages/_error.js",
"/_document": "pages/_document.js",
"/404": "pages/404.js",
"/": "pages/index.js"
}
34 changes: 34 additions & 0 deletions .next/trace

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/Footer.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Link from 'next/link'
import path from 'path'
import Image from 'next/image'
import neh from '../public/images/logos/neh.jpg';
import neh from '../public/images/logos/neh.png';
import gcdi from '../public/images/logos/gcdi.png';
import gc from '../public/images/logos/gc_logo.png';

Expand Down

0 comments on commit 22f8d27

Please sign in to comment.