forked from Northgate-Systems/RemitX
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage.tsx
More file actions
29 lines (27 loc) · 900 Bytes
/
Copy pathpage.tsx
File metadata and controls
29 lines (27 loc) · 900 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import type { Metadata } from "next";
import LandingClient from "./landing-client";
export const metadata: Metadata = {
title: "RemitX | Send Money Smarter, Cheaper, Faster",
description:
"RemitX leverages the Stellar Network to deliver instant cross-border settlements with lower fees than traditional banking. Send money globally in seconds.",
openGraph: {
title: "RemitX | Send Money Smarter, Cheaper, Faster",
description:
"RemitX leverages the Stellar Network to deliver instant cross-border settlements with lower fees than traditional banking.",
url: "https://remitx.app",
images: [
{
url: "/image/Remitx.png",
width: 1200,
height: 630,
alt: "RemitX - Send Money Smarter, Cheaper, Faster",
},
],
},
alternates: {
canonical: "/",
},
};
export default function HomePage() {
return <LandingClient />;
}