Compare commits
2 Commits
94e39fa3eb
...
05277a28c2
Author | SHA1 | Date | |
---|---|---|---|
05277a28c2 | |||
de64f88f21 |
@ -45,6 +45,31 @@
|
||||
"static/chunks/webpack.js",
|
||||
"static/chunks/main-app.js",
|
||||
"static/chunks/app/community/layout.js"
|
||||
],
|
||||
"/features/page": [
|
||||
"static/chunks/webpack.js",
|
||||
"static/chunks/main-app.js",
|
||||
"static/chunks/app/features/page.js"
|
||||
],
|
||||
"/community/page": [
|
||||
"static/chunks/webpack.js",
|
||||
"static/chunks/main-app.js",
|
||||
"static/chunks/app/community/page.js"
|
||||
],
|
||||
"/community/blogs/herogpt/page": [
|
||||
"static/chunks/webpack.js",
|
||||
"static/chunks/main-app.js",
|
||||
"static/chunks/app/community/blogs/herogpt/page.js"
|
||||
],
|
||||
"/features/layout": [
|
||||
"static/chunks/webpack.js",
|
||||
"static/chunks/main-app.js",
|
||||
"static/chunks/app/features/layout.js"
|
||||
],
|
||||
"/community/events/blockchainweek1/page": [
|
||||
"static/chunks/webpack.js",
|
||||
"static/chunks/main-app.js",
|
||||
"static/chunks/app/community/events/blockchainweek1/page.js"
|
||||
]
|
||||
}
|
||||
}
|
BIN
.next/cache/webpack/client-development/0.pack.gz
vendored
BIN
.next/cache/webpack/client-development/0.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/client-development/1.pack.gz
vendored
BIN
.next/cache/webpack/client-development/1.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/client-development/2.pack.gz
vendored
BIN
.next/cache/webpack/client-development/2.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/client-development/3.pack.gz
vendored
BIN
.next/cache/webpack/client-development/3.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/client-development/4.pack.gz
vendored
BIN
.next/cache/webpack/client-development/4.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/client-development/5.pack.gz
vendored
BIN
.next/cache/webpack/client-development/5.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/client-development/index.pack.gz
vendored
BIN
.next/cache/webpack/client-development/index.pack.gz
vendored
Binary file not shown.
Binary file not shown.
BIN
.next/cache/webpack/server-development/0.pack.gz
vendored
BIN
.next/cache/webpack/server-development/0.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/server-development/1.pack.gz
vendored
BIN
.next/cache/webpack/server-development/1.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/server-development/2.pack.gz
vendored
BIN
.next/cache/webpack/server-development/2.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/server-development/3.pack.gz
vendored
BIN
.next/cache/webpack/server-development/3.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/server-development/4.pack.gz
vendored
BIN
.next/cache/webpack/server-development/4.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/server-development/5.pack.gz
vendored
BIN
.next/cache/webpack/server-development/5.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/server-development/6.pack.gz
vendored
BIN
.next/cache/webpack/server-development/6.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/server-development/7.pack.gz
vendored
BIN
.next/cache/webpack/server-development/7.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/server-development/8.pack.gz
vendored
BIN
.next/cache/webpack/server-development/8.pack.gz
vendored
Binary file not shown.
BIN
.next/cache/webpack/server-development/index.pack.gz
vendored
BIN
.next/cache/webpack/server-development/index.pack.gz
vendored
Binary file not shown.
Binary file not shown.
@ -1,5 +1,8 @@
|
||||
{
|
||||
"/_not-found/page": "app/_not-found/page.js",
|
||||
"/community/events/versefest/page": "app/community/events/versefest/page.js",
|
||||
"/(main)/page": "app/(main)/page.js"
|
||||
"/community/page": "app/community/page.js",
|
||||
"/(main)/page": "app/(main)/page.js",
|
||||
"/community/events/blockchainweek1/page": "app/community/events/blockchainweek1/page.js",
|
||||
"/features/page": "app/features/page.js",
|
||||
"/usecases/page": "app/usecases/page.js"
|
||||
}
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -125,7 +125,7 @@
|
||||
/******/
|
||||
/******/ /* webpack/runtime/getFullHash */
|
||||
/******/ (() => {
|
||||
/******/ __webpack_require__.h = () => ("10f36c0699820b3f")
|
||||
/******/ __webpack_require__.h = () => ("e20f2e3ebef32ad0")
|
||||
/******/ })();
|
||||
/******/
|
||||
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { Layout } from '@/components/Layout'
|
||||
|
||||
export default function MainLayout({ children }) {
|
||||
export default function CommunityLayout({ children }) {
|
||||
return <Layout>{children}</Layout>
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { Layout } from '@/components/Layout'
|
||||
|
||||
export default function MainLayout({ children }) {
|
||||
export default function FeaturesLayout({ children }) {
|
||||
return <Layout>{children}</Layout>
|
||||
}
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { Layout } from '@/components/Layout'
|
||||
|
||||
export default function MainLayout({ children }) {
|
||||
export default function UsecasesLayout({ children }) {
|
||||
return <Layout>{children}</Layout>
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user