From 8a9913a58b2981e08ff399a1a7e86f7f9a32c8c7 Mon Sep 17 00:00:00 2001 From: tpSpace Date: Sat, 17 Jan 2026 23:24:10 +0700 Subject: [PATCH] remove footer --- app/marketplace/my-data/page.tsx | 60 +++++++++++++------------------- app/marketplace/page.tsx | 20 +++-------- 2 files changed, 29 insertions(+), 51 deletions(-) diff --git a/app/marketplace/my-data/page.tsx b/app/marketplace/my-data/page.tsx index e946f40..378a21a 100644 --- a/app/marketplace/my-data/page.tsx +++ b/app/marketplace/my-data/page.tsx @@ -87,7 +87,7 @@ export default function MyDataPage() { const createFlow = useCallback(async (data: Uint8Array, identifier: string) => { const walrus = await getWalrus(); const { WalrusFile } = await import('@mysten/walrus'); - + const client = new SuiJsonRpcClient({ url: getFullnodeUrl('testnet'), network: 'testnet', @@ -290,7 +290,7 @@ export default function MyDataPage() { const effects = result.effects as { created?: Array<{ reference: { objectId: string } }> } | undefined; const newListingId = effects?.created?.[0]?.reference?.objectId || result.digest; console.log('New listing ID:', newListingId); - + addLog('listing', 'success', 'Listing created!', `ID: ${newListingId.slice(0, 16)}...`); setListingId(newListingId); @@ -350,7 +350,7 @@ export default function MyDataPage() {

My Data Dashboard

- +
@@ -374,23 +374,21 @@ export default function MyDataPage() {
- - @@ -408,9 +406,9 @@ export default function MyDataPage() { View Analytics arrow_outward
- +
-
setIsCreateModalOpen(true)} className="flex flex-col items-center justify-center rounded-xl border-2 border-dashed border-ink bg-gray-50 p-6 min-h-[340px] hover:bg-blue-50 hover:border-primary transition-all duration-200 cursor-pointer group" > @@ -463,7 +461,7 @@ export default function MyDataPage() { Recent Purchases (0 items)
- +
@@ -474,7 +472,7 @@ export default function MyDataPage() {

No purchases yet

Start exploring the marketplace to find datasets.

- @@ -486,15 +484,6 @@ export default function MyDataPage() { )}
-
-

Powered by Sui Network

-
- dataset - security - hub -
-
- {isCreateModalOpen && (
@@ -528,7 +517,7 @@ export default function MyDataPage() { const isCompleted = index < stepIndex; const isCurrent = step.key === currentStep; const isPending = index > stepIndex; - + return (
@@ -551,9 +540,8 @@ export default function MyDataPage() {
{index < STEPS.length - 1 && ( -
+
)} ); @@ -708,7 +696,7 @@ export default function MyDataPage() {

Dataset Summary

- +

Name

@@ -771,7 +759,7 @@ export default function MyDataPage() { ) : (
{logs.map((log, index) => ( -

Your dataset is now on the marketplace

- + {listingId && (

Listing ID

{listingId}

)} - +

Dataset Marketplace

Discover and purchase high-quality datasets

- + {/* Debug info */}
@@ -109,13 +109,13 @@ export default function MarketplacePage() { {error && ( Error: {error.message} )} - -