import type { Metadata } from "next";

export const metadata: Metadata = {
  title: "A Gem Vial Design Shared With You",
  description: "View a personalised Gem Vial wedding favour card and leave a comment.",
  robots: { index: false, follow: false },
  openGraph: {
    title: "A Gem Vial Design Shared With You",
    description: "View a personalised wedding favour card from Gem Vial.",
    type: "website",
    images: [{ url: "/og-share.png", width: 1731, height: 909, alt: "A Gem Vial design shared with you" }],
  },
  twitter: {
    card: "summary_large_image",
    title: "A Gem Vial Design Shared With You",
    description: "View a personalised wedding favour card from Gem Vial.",
    images: ["/og-share.png"],
  },
};

export default function ShareLayout({ children }: Readonly<{ children: React.ReactNode }>) {
  return children;
}
