diff --git a/package.json b/package.json index 15bc4b3..bddaf8f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "request-commerce", - "description": "A Request Network demo app for easy invoice creation using Request API", + "description": "A Request Network demo app for commerce and invoice management using Request API", "version": "0.14.0", "license": "MIT", "packageManager": "pnpm@10.0.0", diff --git a/src/app/(auth)/signin/page.tsx b/src/app/(auth)/signin/page.tsx index ac83459..f663bf6 100644 --- a/src/app/(auth)/signin/page.tsx +++ b/src/app/(auth)/signin/page.tsx @@ -7,7 +7,7 @@ import Link from "next/link"; import { redirect } from "next/navigation"; export const metadata: Metadata = { - title: "EasyInvoice | Simple Invoice Management", + title: "Request Commerce | Simple Invoice Management", description: "Create, manage and track invoices easily with Request Network", }; @@ -32,7 +32,7 @@ export default async function LoginPage() { EASY TO USE CRYPTO INVOICING

- Welcome to EasyInvoice + Welcome to Request Commerce

Easily create and send invoices to your customers using crypto. diff --git a/src/app/(dashboard)/i/[id]/page.tsx b/src/app/(dashboard)/i/[id]/page.tsx index db1638e..a8868e6 100644 --- a/src/app/(dashboard)/i/[id]/page.tsx +++ b/src/app/(dashboard)/i/[id]/page.tsx @@ -7,7 +7,7 @@ import { notFound, redirect } from "next/navigation"; import { getInvoiceMeLink } from "./helpers"; export const metadata: Metadata = { - title: "Invoice Me | EasyInvoice", + title: "Invoice Me | Request Commerce", description: "Create an invoice for a service provider", }; diff --git a/src/app/(dashboard)/invoices/[ID]/_components/payment-section.tsx b/src/app/(dashboard)/invoices/[ID]/_components/payment-section.tsx index 63e96c6..b61edc6 100644 --- a/src/app/(dashboard)/invoices/[ID]/_components/payment-section.tsx +++ b/src/app/(dashboard)/invoices/[ID]/_components/payment-section.tsx @@ -439,8 +439,8 @@ export function PaymentSection({ serverInvoice }: PaymentSectionProps) { {formatCurrencyLabel(invoice.invoiceCurrency)} {" "} on a mainnet blockchain, which means you'll be transferring{" "} - actual value. EasyInvoice is a - demonstration app and all blockchain transactions are + actual value. Request Commerce + is a demonstration app and all blockchain transactions are irreversible.

diff --git a/src/app/(dashboard)/invoices/[ID]/page.tsx b/src/app/(dashboard)/invoices/[ID]/page.tsx index d367801..53c3c5e 100644 --- a/src/app/(dashboard)/invoices/[ID]/page.tsx +++ b/src/app/(dashboard)/invoices/[ID]/page.tsx @@ -12,7 +12,7 @@ import { notFound } from "next/navigation"; import { PaymentSection } from "./_components/payment-section"; import { getInvoice } from "./helpers"; export const metadata: Metadata = { - title: "Invoice Payment | EasyInvoice", + title: "Invoice Payment | Request Commerce", description: "Process payment for your invoice", }; diff --git a/src/app/(dashboard)/payouts/batch/page.tsx b/src/app/(dashboard)/payouts/batch/page.tsx index 9f903bb..f286735 100644 --- a/src/app/(dashboard)/payouts/batch/page.tsx +++ b/src/app/(dashboard)/payouts/batch/page.tsx @@ -3,8 +3,8 @@ import { requireAuth } from "@/lib/auth"; import { BatchPayout } from "./_components/batch-payout"; export const metadata = { - title: "Batch Payouts | Easy Invoice", - description: "Send batch payouts using Easy Invoice", + title: "Batch Payouts | Request Commerce", + description: "Send batch payouts using Request Commerce", }; export default async function BatchPayoutSlot() { await requireAuth(); diff --git a/src/app/(dashboard)/payouts/direct/page.tsx b/src/app/(dashboard)/payouts/direct/page.tsx index 68e42e0..32c206e 100644 --- a/src/app/(dashboard)/payouts/direct/page.tsx +++ b/src/app/(dashboard)/payouts/direct/page.tsx @@ -3,8 +3,8 @@ import { requireAuth } from "@/lib/auth"; import { DirectPayment } from "./_components/direct-payout"; export const metadata = { - title: "Direct Payout | Easy Invoice", - description: "Create direct payouts using Easy Invoice", + title: "Direct Payout | Request Commerce", + description: "Create direct payouts using Request Commerce", }; export default async function DirectPaymentPage() { await requireAuth(); diff --git a/src/app/(dashboard)/payouts/page.tsx b/src/app/(dashboard)/payouts/page.tsx index f840d9a..90cefec 100644 --- a/src/app/(dashboard)/payouts/page.tsx +++ b/src/app/(dashboard)/payouts/page.tsx @@ -2,7 +2,7 @@ import type { Metadata } from "next"; import { redirect } from "next/navigation"; export const metadata: Metadata = { - title: "Payouts | Easy Invoice", + title: "Payouts | Request Commerce", description: "Send single, batch or recurring payouts by creating a request first", }; diff --git a/src/app/(dashboard)/payouts/recurring/create/page.tsx b/src/app/(dashboard)/payouts/recurring/create/page.tsx index 3b35160..48ac985 100644 --- a/src/app/(dashboard)/payouts/recurring/create/page.tsx +++ b/src/app/(dashboard)/payouts/recurring/create/page.tsx @@ -2,8 +2,8 @@ import { requireAuth } from "@/lib/auth"; import { CreateRecurringPayment } from "./_components/create-recurring-payment"; export const metadata = { - title: "Recurring Payments | Easy Invoice", - description: "Create recurring payments using Easy Invoice", + title: "Recurring Payments | Request Commerce", + description: "Create recurring payments using Request Commerce", }; export default async function CreateRecurringPaymentSlot() { await requireAuth(); diff --git a/src/app/(dashboard)/payouts/recurring/page.tsx b/src/app/(dashboard)/payouts/recurring/page.tsx index c5429ad..d60cae2 100644 --- a/src/app/(dashboard)/payouts/recurring/page.tsx +++ b/src/app/(dashboard)/payouts/recurring/page.tsx @@ -3,8 +3,8 @@ import { api } from "@/trpc/server"; import { ViewRecurringPayments } from "./_components/view-recurring-payments"; export const metadata = { - title: "Recurring Payouts | Easy Invoice", - description: "Manage your recurring payouts using Easy Invoice", + title: "Recurring Payouts | Request Commerce", + description: "Manage your recurring payouts using Request Commerce", }; export default async function RecurringPayoutsSlot() { await requireAuth(); diff --git a/src/app/(dashboard)/s/[id]/page.tsx b/src/app/(dashboard)/s/[id]/page.tsx index 746bf14..97c3d98 100644 --- a/src/app/(dashboard)/s/[id]/page.tsx +++ b/src/app/(dashboard)/s/[id]/page.tsx @@ -6,7 +6,7 @@ import { SubscriptionPlanPreview } from "./_components/subscription-plan-preview import { getSubscriptionPlan } from "./helpers"; export const metadata: Metadata = { - title: "Subscribe | EasyInvoice", + title: "Subscribe | Request Commerce", description: "Subscribe to a service provider", }; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7ecb379..a99770a 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -24,8 +24,9 @@ const geistMono = localFont({ }); export const metadata: Metadata = { - title: "Easy Invoice", - description: "Easy Invoice is a simple and secure invoice payment platform.", + title: "Request Commerce", + description: + "Request Commerce is a simple and secure invoice payment platform.", }; export default async function RootLayout({ @@ -61,7 +62,7 @@ export default async function RootLayout({ - + diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx index 49508c2..40caabf 100644 --- a/src/app/not-found.tsx +++ b/src/app/not-found.tsx @@ -10,7 +10,7 @@ export default async function NotFound() {
- EI + RC
diff --git a/src/components/app-kit.tsx b/src/components/app-kit.tsx index 171d378..1c84244 100644 --- a/src/components/app-kit.tsx +++ b/src/components/app-kit.tsx @@ -12,9 +12,10 @@ import { import { createAppKit } from "@reown/appkit/react"; const metadata = { - name: "Easy Invoice", - description: "Easy Invoice is a simple and secure invoice payment platform.", - url: "https://easyinvoice.request.network", + name: "Request Commerce", + description: + "Request Commerce is a simple and secure invoice payment platform.", + url: "https://commerce.request.network", icons: ["./assets/logo.svg"], }; diff --git a/src/components/footer.tsx b/src/components/footer.tsx index e52ca9d..c5beba2 100644 --- a/src/components/footer.tsx +++ b/src/components/footer.tsx @@ -5,8 +5,8 @@ export function Footer() {