← back to Wine Finder Next

app/membership/layout.tsx

90 lines

import type { Metadata } from 'next';

export const metadata: Metadata = {
  title: 'Tokenized Wine Membership | Rare Wine Investment & Shares | Wine DAO',
  description: 'Invest in tokenized rare wine bottles including Château Margaux 1996 ($67,500) and Domaine de la Romanée-Conti La Tâche 2005 ($112,500). Own shares in ultra-premium wines with governance voting rights, sample distribution, and marketplace trading.',
  keywords: [
    'tokenized wine',
    'wine investment',
    'rare wine shares',
    'wine membership',
    'wine DAO',
    'Château Margaux investment',
    'DRC La Tâche shares',
    'wine collectibles',
    'fractional wine ownership',
    'wine governance',
    'wine marketplace',
    'premium wine investment',
    'wine bottle shares',
    'investment grade wine',
    'wine asset tokenization',
    'rare wine trading',
    'wine club membership',
    'Bordeaux investment',
    'Burgundy investment',
    'wine portfolio'
  ],
  authors: [{ name: 'Red Thunder Wine' }],
  creator: 'Red Thunder Wine Tracker',
  publisher: 'Red Thunder Wine',
  robots: {
    index: true,
    follow: true,
    nocache: false,
    googleBot: {
      index: true,
      follow: true,
      'max-video-preview': -1,
      'max-image-preview': 'large',
      'max-snippet': -1,
    },
  },
  openGraph: {
    title: 'Tokenized Wine Membership - Invest in Rare Wine Shares',
    description: 'Own fractional shares in ultra-premium wines like Château Margaux 1996 and DRC La Tâche 2005. Governance voting, sample distribution, and marketplace trading.',
    url: 'http://45.61.58.125:7250/membership',
    siteName: 'Red Thunder Wine Tracker',
    locale: 'en_US',
    type: 'website',
    images: [
      {
        url: 'http://45.61.58.125:7250/og-membership.jpg',
        width: 1200,
        height: 630,
        alt: 'Tokenized Wine Membership - Rare Wine Investment Platform',
      },
    ],
  },
  twitter: {
    card: 'summary_large_image',
    title: 'Tokenized Wine Membership - Invest in Rare Wine Shares',
    description: 'Own fractional shares in ultra-premium wines like Château Margaux 1996 and DRC La Tâche 2005. Governance voting and marketplace trading.',
    images: ['http://45.61.58.125:7250/og-membership.jpg'],
    creator: '@RedThunderWine',
  },
  alternates: {
    canonical: 'http://45.61.58.125:7250/membership',
  },
  verification: {
    google: 'your-google-verification-code-here',
    yandex: 'your-yandex-verification-code-here',
  },
  category: 'Wine Investment',
  other: {
    'price-currency': 'USD',
    'price-amount-min': '6.75',
    'price-amount-max': '11.25',
    'investment-type': 'Fractional Wine Ownership',
    'minimum-investment': '1 share',
  },
};

export default function MembershipLayout({
  children,
}: {
  children: React.ReactNode;
}) {
  return children;
}