Compare commits

..

2 Commits

32 changed files with 44 additions and 16 deletions

View File

@ -45,6 +45,31 @@
"static/chunks/webpack.js", "static/chunks/webpack.js",
"static/chunks/main-app.js", "static/chunks/main-app.js",
"static/chunks/app/community/layout.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"
] ]
} }
} }

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -1,5 +1,8 @@
{ {
"/_not-found/page": "app/_not-found/page.js", "/_not-found/page": "app/_not-found/page.js",
"/community/events/versefest/page": "app/community/events/versefest/page.js", "/community/page": "app/community/page.js",
"/(main)/page": "app/(main)/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

View File

@ -125,7 +125,7 @@
/******/ /******/
/******/ /* webpack/runtime/getFullHash */ /******/ /* webpack/runtime/getFullHash */
/******/ (() => { /******/ (() => {
/******/ __webpack_require__.h = () => ("10f36c0699820b3f") /******/ __webpack_require__.h = () => ("e20f2e3ebef32ad0")
/******/ })(); /******/ })();
/******/ /******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */ /******/ /* webpack/runtime/hasOwnProperty shorthand */

View File

@ -1,5 +1,5 @@
import { Layout } from '@/components/Layout' import { Layout } from '@/components/Layout'
export default function MainLayout({ children }) { export default function CommunityLayout({ children }) {
return <Layout>{children}</Layout> return <Layout>{children}</Layout>
} }

View File

@ -1,5 +1,5 @@
import { Layout } from '@/components/Layout' import { Layout } from '@/components/Layout'
export default function MainLayout({ children }) { export default function FeaturesLayout({ children }) {
return <Layout>{children}</Layout> return <Layout>{children}</Layout>
} }

View File

@ -1,5 +1,5 @@
import { Layout } from '@/components/Layout' import { Layout } from '@/components/Layout'
export default function MainLayout({ children }) { export default function UsecasesLayout({ children }) {
return <Layout>{children}</Layout> return <Layout>{children}</Layout>
} }