Skip to content

Commit 27b21f6

Browse files
Merge branch 'main' into main
2 parents c1bbc9a + 66c2df8 commit 27b21f6

2 files changed

Lines changed: 41 additions & 13 deletions

File tree

app/docs/page.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@ export default function DocsPage() {
210210
</h3>
211211
<div className="bg-gray-900 rounded-lg p-4 border-l-4 border-[#58B12F] mb-6 overflow-x-auto">
212212
<pre className="text-sm text-gray-300">
213-
<code>{`git clone https://github.com/DeCleanup-Network/decleanup-mini-app.git
214-
cd decleanup-mini-app
213+
<code>{`git clone https://github.com/DeCleanup-Network/Farcaster-Mini-App.git
214+
cd Farcaster-Mini-App
215215
npm install
216216
cp .env.example .env.local
217217
# Edit .env.local with your configuration
@@ -222,7 +222,7 @@ npm run dev`}</code>
222222
<p className="text-gray-400 mb-4">
223223
For detailed local testing instructions, see the{" "}
224224
<a
225-
href="https://github.com/DeCleanup-Network/decleanup-mini-app/blob/main/LOCAL_TESTING.md"
225+
href="https://github.com/DeCleanup-Network/Farcaster-Mini-App/blob/main/LOCAL_TESTING.md"
226226
target="_blank"
227227
rel="noopener noreferrer"
228228
className="text-[#58B12F] hover:underline"
@@ -346,7 +346,7 @@ npm run dev`}</code>
346346
<p className="text-gray-400">
347347
For detailed system architecture, see the{" "}
348348
<a
349-
href="https://github.com/DeCleanup-Network/decleanup-mini-app/blob/main/SYSTEM_ARCHITECTURE.md"
349+
href="https://github.com/DeCleanup-Network/Farcaster-Mini-App/blob/main/SYSTEM_ARCHITECTURE.md"
350350
target="_blank"
351351
rel="noopener noreferrer"
352352
className="text-[#58B12F] hover:underline"
@@ -430,7 +430,7 @@ npm run dev`}</code>
430430
<p className="text-gray-400">
431431
See the{" "}
432432
<a
433-
href="https://github.com/DeCleanup-Network/decleanup-mini-app/blob/main/.env.example"
433+
href="https://github.com/DeCleanup-Network/Farcaster-Mini-App/blob/main/.env.example"
434434
target="_blank"
435435
rel="noopener noreferrer"
436436
className="text-[#58B12F] hover:underline"
@@ -685,7 +685,7 @@ npm run dev`}</code>
685685
<p className="text-gray-400 mb-6">
686686
For mobile testing instructions, see the{" "}
687687
<a
688-
href="https://github.com/DeCleanup-Network/decleanup-mini-app/blob/main/LOCAL_TESTING.md"
688+
href="https://github.com/DeCleanup-Network/Farcaster-Mini-App/blob/main/LOCAL_TESTING.md"
689689
target="_blank"
690690
rel="noopener noreferrer"
691691
className="text-[#58B12F] hover:underline"
@@ -922,7 +922,7 @@ npm run dev`}</code>
922922
<ul className="list-disc list-inside space-y-2 text-gray-300 mb-8 md:text-lg">
923923
<li>
924924
<a
925-
href="https://github.com/DeCleanup-Network/decleanup-mini-app/blob/main/SYSTEM_ARCHITECTURE.md"
925+
href="https://github.com/DeCleanup-Network/Farcaster-Mini-App/blob/main/SYSTEM_ARCHITECTURE.md"
926926
target="_blank"
927927
rel="noopener noreferrer"
928928
className="text-[#58B12F] hover:underline"
@@ -932,7 +932,7 @@ npm run dev`}</code>
932932
</li>
933933
<li>
934934
<a
935-
href="https://github.com/DeCleanup-Network/decleanup-mini-app/blob/main/LOCAL_TESTING.md"
935+
href="https://github.com/DeCleanup-Network/Farcaster-Mini-App/blob/main/LOCAL_TESTING.md"
936936
target="_blank"
937937
rel="noopener noreferrer"
938938
className="text-[#58B12F] hover:underline"
@@ -942,7 +942,7 @@ npm run dev`}</code>
942942
</li>
943943
<li>
944944
<a
945-
href="https://github.com/DeCleanup-Network/decleanup-mini-app"
945+
href="https://github.com/DeCleanup-Network/Farcaster-Mini-App"
946946
target="_blank"
947947
rel="noopener noreferrer"
948948
className="text-[#58B12F] hover:underline"

components/UseDeCleanupToday/UseDeCleanupToday.tsx

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ const UseDeCleanupToday = () => {
3333
note: null,
3434
},
3535
{
36-
title: "$bDCU token on Base (Clanker)",
36+
title: "$bDCU token on Base",
3737
subtitle: "Cleanup reward + trading token.",
3838
bullets: [
39-
"Live on Base via Clanker",
39+
"Live on Base",
4040
"Used for quick rewards and trading",
4141
],
4242
buttonLabel: "Link – coming soon",
@@ -142,7 +142,21 @@ const UseDeCleanupToday = () => {
142142
{/* Note (if present) */}
143143
{app.note && (
144144
<p className="text-sm text-gray-500 mb-6 italic">
145-
{app.note}
145+
{app.note.startsWith("Contract:") ? (
146+
<>
147+
Contract:{" "}
148+
<Link
149+
href={`https://basescan.org/address/${app.note.split("Contract:")[1].trim()}`}
150+
target="_blank"
151+
rel="noopener noreferrer"
152+
className="text-[#58B12F] hover:text-[#FAFF00] underline transition-colors"
153+
>
154+
{app.note.split("Contract:")[1].trim()}
155+
</Link>
156+
</>
157+
) : (
158+
app.note
159+
)}
146160
</p>
147161
)}
148162

@@ -252,7 +266,21 @@ const UseDeCleanupToday = () => {
252266
{/* Note (if present) */}
253267
{apps[2].note && (
254268
<p className="text-sm lg:text-base text-gray-500 mb-6 italic">
255-
{apps[2].note}
269+
{apps[2].note.startsWith("Contract:") ? (
270+
<>
271+
Contract:{" "}
272+
<Link
273+
href={`https://basescan.org/address/${apps[2].note.split("Contract:")[1].trim()}`}
274+
target="_blank"
275+
rel="noopener noreferrer"
276+
className="text-[#58B12F] hover:text-[#FAFF00] underline transition-colors"
277+
>
278+
{apps[2].note.split("Contract:")[1].trim()}
279+
</Link>
280+
</>
281+
) : (
282+
apps[2].note
283+
)}
256284
</p>
257285
)}
258286

0 commit comments

Comments
 (0)