Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/app/connect/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { ConnectPanel } from "./ConnectPanel";

export const metadata = {
title: "Connect | MergeFi",
description: "Connect your GitHub account and Stellar wallet to start claiming bounties or funding open source issues.",
};

export default function ConnectPage() {
Expand Down
1 change: 1 addition & 0 deletions src/app/issues/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { BountyCard } from "@/components/bounty/BountyCard";

export const metadata = {
title: "Paid Issues | MergeFi",
description: "Browse funded bounties backed by on-chain Soroban escrow on Stellar. Solve issues and earn USDC instantly upon merge.",
};

export default async function IssuesPage() {
Expand Down
1 change: 1 addition & 0 deletions src/app/milestones/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { MilestoneFundButton, PoolDepositButton } from "./MilestoneActions";

export const metadata = {
title: "Milestones | MergeFi",
description: "Fund entire open source milestones or maintenance pools with escrow-backed milestone budgets on Stellar.",
};

export default async function MilestonesPage() {
Expand Down
4 changes: 4 additions & 0 deletions src/app/not-found.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
export const metadata = {
title: "Page Not Found | MergeFi",
};

import Link from "next/link";
import { Button } from "@/components/ui/Button";

Expand Down
4 changes: 4 additions & 0 deletions src/app/robots.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
import type { MetadataRoute } from "next";

const SITE_URL =
process.env.NEXT_PUBLIC_SITE_URL ?? "https://mergefi.org";

export default function robots(): MetadataRoute.Robots {
return {
rules: {
userAgent: "*",
allow: "/",
},
sitemap: `${SITE_URL}/sitemap.xml`,
};
}