Compare commits

..

No commits in common. "05277a28c28654977988d0a6ce6e9714e4f14308" and "94e39fa3eb8667a371ccd5a05177f4c00b80ed17" have entirely different histories.

32 changed files with 16 additions and 44 deletions

View File

@ -45,31 +45,6 @@
"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"
]
}
}

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,8 +1,5 @@
{
"/_not-found/page": "app/_not-found/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"
"/community/events/versefest/page": "app/community/events/versefest/page.js",
"/(main)/page": "app/(main)/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_require__.h = () => ("e20f2e3ebef32ad0")
/******/ __webpack_require__.h = () => ("10f36c0699820b3f")
/******/ })();
/******/
/******/ /* webpack/runtime/hasOwnProperty shorthand */

View File

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

View File

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

View File

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