diff --git a/apps/nextjs/src/app/(app)/account/assets/page.tsx b/apps/nextjs/src/app/(app)/account/assets/page.tsx
index c893cd93..7a88857c 100644
--- a/apps/nextjs/src/app/(app)/account/assets/page.tsx
+++ b/apps/nextjs/src/app/(app)/account/assets/page.tsx
@@ -1,5 +1,4 @@
import type { Metadata } from "next";
-import AssetL2CollectionPreview from "@/app/(app)/account/assets/AssetL2CollectionPreview";
import { Collections } from "@realms-world/constants";
@@ -18,11 +17,6 @@ export default function Page() {
<>
- {/*
-
-
-
- */}
>
);
diff --git a/apps/nextjs/src/app/(app)/account/assets/realms/page.tsx b/apps/nextjs/src/app/(app)/account/assets/realms/page.tsx
index 54dbb705..edd79a95 100644
--- a/apps/nextjs/src/app/(app)/account/assets/realms/page.tsx
+++ b/apps/nextjs/src/app/(app)/account/assets/realms/page.tsx
@@ -1,11 +1,6 @@
import type { Metadata } from "next";
-import AssetL2CollectionPreview from "@/app/(app)/account/assets/AssetL2CollectionPreview";
-
-import { Collections, CollectionAddresses } from "@realms-world/constants";
import { BridgeNftWrapper } from "../BridgeNftWrapper";
-import { Portfolio } from "../Portfolio";
-import { SUPPORTED_L2_CHAIN_ID } from "@/constants/env";
export function generateMetadata(): Metadata {
return {
@@ -19,11 +14,6 @@ export default function Page() {
<>
- {/*
-
-
-
- */}
>
);
diff --git a/apps/nextjs/src/app/(app)/blogs/BlogGrid.tsx b/apps/nextjs/src/app/(app)/blogs/BlogGrid.tsx
index 13b47b99..34ae7db7 100644
--- a/apps/nextjs/src/app/(app)/blogs/BlogGrid.tsx
+++ b/apps/nextjs/src/app/(app)/blogs/BlogGrid.tsx
@@ -2,19 +2,18 @@ import { BlogCard } from "./BlogCard";
import { reader } from "@/utils/keystatic";
export const BlogGrid = async () => {
- const blogs = await reader.collections.blogs.all();
- const blogsSortedByDate = blogs.sort(function (a, b) {
- // Turn your strings into dates, and then subtract them
- // to get a value that is either negative, positive, or zero.
- return new Date(b?.entry.publishDate) - new Date(a?.entry.publishDate);
- });
+ const blogs = await reader.collections.blogs.all();
+ const blogsSortedByDate = blogs.sort(function (a, b) {
+ // Turn your strings into dates, and then subtract them
+ // to get a value that is either negative, positive, or zero.
+ return new Date(b?.entry.publishDate) - new Date(a?.entry.publishDate);
+ });
-
- return (
-