Loading...
Here's a summary of all the meta tags and SEO enhancements we added to the landing page:
We added comprehensive metadata about Whispering Angel in the layout.tsx
file:
Here's the full metadata implementation we added:
export const metadata: Metadata = {
title: "Free Whispering Angel Rosé | Premium Provence Wine | Winedrops",
description:
"Claim your free bottle of Whispering Angel - the world's most coveted rosé from Château d'Esclans in Provence, France. Enjoy elegant notes of fresh red berries, subtle floral hints, and crisp minerality. Award-winning premium rosé worth £25.99, delivered to your door with your first Winedrops case. Save up to 80% on premium wines.",
keywords: [
"Whispering Angel",
"rosé wine",
"Château d'Esclans",
"Provence wine",
"premium rosé",
"free wine",
"wine delivery",
"Sacha Lichine",
"Côtes de Provence",
"French wine",
"pale pink rosé",
"wine subscription",
"wine discount",
"Winedrops",
],
authors: [{ name: "Winedrops" }],
creator: "Winedrops",
publisher: "Winedrops",
openGraph: {
type: "website",
locale: "en_GB",
url: "https://winedrops.com/whispering-angel",
title: "Free Bottle of Whispering Angel Rosé | Premium Wine Offer",
description:
"Claim your free bottle of Whispering Angel - the world's most popular premium rosé from Château d'Esclans. Consistently rated 90+ points by Wine Enthusiast and Wine Spectator. Elegant, refreshing, and sophisticated with notes of fresh red berries and subtle floral hints. Worth £25.99, yours free with your first Winedrops case.",
siteName: "Winedrops",
images: [
{
url: "/images/whispering-angel.png",
width: 1200,
height: 630,
alt: "Whispering Angel Rosé Wine Bottle and Glass",
},
],
},
twitter: {
card: "summary_large_image",
title: "Free Whispering Angel Rosé | Premium Provence Wine",
description:
"Get a free bottle of Whispering Angel - the world's most coveted rosé from Château d'Esclans. Elegant, refreshing, and sophisticated with notes of fresh red berries. Worth £25.99, yours free with your first Winedrops case.",
images: ["/images/whispering-angel.png"],
creator: "@winedrops",
site: "@winedrops",
},
alternates: {
canonical: "https://winedrops.com/whispering-angel",
},
category: "Wine",
other: {
"product:brand": "Château d'Esclans",
"product:availability": "in stock",
"product:condition": "new",
"product:price:amount": "25.99",
"product:price:currency": "GBP",
"product:retailer_item_id": "whispering-angel-rose",
"product:item_group_id": "premium-rose-wines",
"og:price:amount": "0",
"og:price:currency": "GBP",
"og:availability": "in stock",
"wine:type": "Rosé",
"wine:region": "Côtes de Provence, France",
"wine:winery": "Château d'Esclans",
"wine:vintage": "Current Vintage",
"wine:varietal": "Grenache, Cinsault, Rolle, Syrah, Tibouren",
"wine:alcohol_content": "13% ABV",
"wine:style": "Dry, Light-bodied, Crisp",
"wine:tasting_notes": "Fresh red berries, subtle floral notes, crisp minerality, refreshing finish",
"wine:food_pairing": "Seafood, salads, light summer dishes, grilled fish, Mediterranean cuisine",
"wine:awards": "90+ points Wine Enthusiast, Wine Spectator",
},
}
We also added additional meta tags in the <head>
section:
<head>
{/* Additional meta tags for Whispering Angel */}
<meta name="wine:color" content="Pale Pink" />
<meta name="wine:serving_temperature" content="8-10°C (46-50°F)" />
<meta name="wine:closure" content="Cork" />
<meta name="wine:aging_potential" content="Drink now, not intended for aging" />
<meta name="wine:production" content="Limited production from select vineyards" />
<meta name="wine:winemaker" content="Sacha Lichine" />
<meta name="wine:sustainable" content="Sustainable viticulture practices" />
<meta name="wine:history" content="Launched in 2007, revolutionized the rosé market" />
<meta name="wine:nickname" content="Hampton's Water" />
<meta name="offer:details" content="Free bottle worth £25.99 with first case" />
<meta name="offer:savings" content="Save over £500 per year on premium wines" />
<meta name="offer:discount" content="40-80% off retail prices" />
<meta name="offer:shipping" content="Free delivery included" />
<meta name="offer:guarantee" content="100% satisfaction guarantee" />
<meta name="offer:membership" content="No commitment, cancel anytime" />
</head>
These comprehensive meta tags help with:
can we add these meta tags to this project
Loading...