File size: 826 Bytes
89682f8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
30
31
32
33
34
35
36
37
38
import { Metadata } from "next";
import TryEmoji from "@/components/try-emoji";

type Props = {
  params: { share?: string };
  searchParams: { [key: string]: string | string[] | undefined };
};

export async function generateMetadata(po: Props): Promise<Metadata> {
  // read route params
  const share = po.searchParams?.share;

  const siteUrl =
    process.env.NODE_ENV === "production"
      ? "https://www.tryemoji.com/"
      : "http://localhost:3000/";
  const ogUrl = new URL("og", siteUrl);
  if (share) {
    ogUrl.searchParams.set("share", share as string);
  }
  return {
    openGraph: {
      images: [
        {
          url: ogUrl.toString(),
          width: 630,
          height: 473,
          alt: "tryEmoji",
        },
      ],
    },
  };
}

export default function Home() {
  return <TryEmoji />;
}