Merge version_1 into main #1
@@ -25,59 +25,43 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Winners",
|
||||
id: "/winners",
|
||||
},
|
||||
name: "Winners", id: "/winners"},
|
||||
{
|
||||
name: "How To Enter",
|
||||
id: "/how-to-enter",
|
||||
},
|
||||
name: "How To Enter", id: "/how-to-enter"},
|
||||
{
|
||||
name: "Journal",
|
||||
id: "/journal",
|
||||
},
|
||||
name: "Journal", id: "/journal"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/faq",
|
||||
},
|
||||
name: "FAQ", id: "/faq"},
|
||||
{
|
||||
name: "Login",
|
||||
id: "/login",
|
||||
},
|
||||
name: "Login", id: "/login"},
|
||||
{
|
||||
name: "Register",
|
||||
id: "/register",
|
||||
},
|
||||
name: "Register", id: "/register"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/elegant-wine-expert-bartender-logo_742173-11819.jpg"
|
||||
logoAlt="FineWine Raffles Logo"
|
||||
brandName="FineWine Raffles"
|
||||
button={{
|
||||
text: "Enter A Raffle",
|
||||
href: "/#raffles",
|
||||
}}
|
||||
text: "Enter A Raffle", href: "/#raffles"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "plain",
|
||||
}}
|
||||
variant: "plain"}}
|
||||
title="Welcome Back, Connoisseur"
|
||||
description="Log in to your FineWine Raffles account to manage your entries, track your favorite wines, and discover new opportunities."
|
||||
buttons={[
|
||||
{
|
||||
text: "Forgot Password?",
|
||||
href: "/reset-password",
|
||||
},
|
||||
text: "Forgot Password?", href: "/reset-password"},
|
||||
]}
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/people-with-glasses-composition_23-2150188061.jpg", alt: "Person logging in on a laptop"
|
||||
}
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/virtual-love-cute-blonde-girl-red-dress-distance-date-with-wine-holding-heart-sign_140725-163942.jpg"
|
||||
imageAlt="Person logging in on a laptop"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -86,66 +70,39 @@ export default function LandingPage() {
|
||||
logoText="FineWine Raffles"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Winners",
|
||||
href: "/winners",
|
||||
},
|
||||
label: "Winners", href: "/winners"},
|
||||
{
|
||||
label: "Journal",
|
||||
href: "/journal",
|
||||
},
|
||||
label: "Journal", href: "/journal"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "How To Enter",
|
||||
href: "/how-to-enter",
|
||||
},
|
||||
label: "How To Enter", href: "/how-to-enter"},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
label: "FAQ", href: "/faq"},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "/terms",
|
||||
},
|
||||
label: "Terms of Service", href: "/terms"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "/privacy",
|
||||
},
|
||||
label: "Privacy Policy", href: "/privacy"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "Login",
|
||||
href: "/login",
|
||||
},
|
||||
label: "Login", href: "/login"},
|
||||
{
|
||||
label: "Register",
|
||||
href: "/register",
|
||||
},
|
||||
label: "Register", href: "/register"},
|
||||
{
|
||||
label: "Affiliates",
|
||||
href: "/affiliates",
|
||||
},
|
||||
label: "Affiliates", href: "/affiliates"},
|
||||
{
|
||||
label: "Giving Back",
|
||||
href: "/giving-back",
|
||||
},
|
||||
label: "Giving Back", href: "/giving-back"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
308
src/app/page.tsx
308
src/app/page.tsx
@@ -31,140 +31,79 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Winners",
|
||||
id: "/winners",
|
||||
},
|
||||
name: "Winners", id: "/winners"},
|
||||
{
|
||||
name: "How To Enter",
|
||||
id: "/how-to-enter",
|
||||
},
|
||||
name: "How To Enter", id: "/how-to-enter"},
|
||||
{
|
||||
name: "Journal",
|
||||
id: "/journal",
|
||||
},
|
||||
name: "Journal", id: "/journal"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/faq",
|
||||
},
|
||||
name: "FAQ", id: "/faq"},
|
||||
{
|
||||
name: "Login",
|
||||
id: "/login",
|
||||
},
|
||||
name: "Login", id: "/login"},
|
||||
{
|
||||
name: "Register",
|
||||
id: "/register",
|
||||
},
|
||||
name: "Register", id: "/register"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/elegant-wine-expert-bartender-logo_742173-11819.jpg"
|
||||
logoAlt="FineWine Raffles Logo"
|
||||
brandName="FineWine Raffles"
|
||||
button={{
|
||||
text: "Enter A Raffle",
|
||||
href: "/#raffles",
|
||||
}}
|
||||
text: "Enter A Raffle", href: "/#raffles"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroCentered
|
||||
background={{
|
||||
variant: "sparkles-gradient",
|
||||
}}
|
||||
variant: "sparkles-gradient"}}
|
||||
title="Win the World's Finest Wines"
|
||||
description="Enter our exclusive raffles for a chance to own rare vintages and prestigious bottles. Your journey to luxury wine starts here."
|
||||
avatars={[
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/young-handsome-man-beige-turtleneck-smiling-cheerfully-showing-teeth_141793-54841.jpg",
|
||||
alt: "John Doe",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/young-handsome-man-beige-turtleneck-smiling-cheerfully-showing-teeth_141793-54841.jpg", alt: "John Doe"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-people-with-glasses-posing-studio_23-2150169319.jpg",
|
||||
alt: "Jane Smith",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/medium-shot-people-with-glasses-posing-studio_23-2150169319.jpg", alt: "Jane Smith"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/people-with-glasses-composition_23-2150188060.jpg",
|
||||
alt: "Michael Brown",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/people-with-glasses-composition_23-2150188060.jpg", alt: "Michael Brown"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-man-developing-photos_23-2149893918.jpg",
|
||||
alt: "Emily White",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-man-developing-photos_23-2149893918.jpg", alt: "Emily White"},
|
||||
{
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-friends-with-graphic-eye-makeup_23-2150723141.jpg",
|
||||
alt: "David Green",
|
||||
},
|
||||
src: "http://img.b2bpic.net/free-photo/front-view-friends-with-graphic-eye-makeup_23-2150723141.jpg", alt: "David Green"},
|
||||
]}
|
||||
avatarText="Join thousands of happy wine enthusiasts!"
|
||||
buttons={[
|
||||
{
|
||||
text: "Enter a Raffle",
|
||||
href: "/#raffles",
|
||||
},
|
||||
text: "Enter a Raffle", href: "/#raffles"},
|
||||
{
|
||||
text: "View All Wines",
|
||||
href: "/#wines",
|
||||
},
|
||||
text: "View All Wines", href: "/#wines"},
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
{
|
||||
type: "text",
|
||||
text: "Pétrus 2000",
|
||||
},
|
||||
type: "text", text: "Pétrus 2000"},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/liquor-bottle-with-candle-scarf-plant-pot_176474-6084.jpg",
|
||||
alt: "Pétrus 2000",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/liquor-bottle-with-candle-scarf-plant-pot_176474-6084.jpg", alt: "Pétrus 2000"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Romanée-Conti",
|
||||
},
|
||||
type: "text", text: "Romanée-Conti"},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/still-life-vintage-objects_23-2150244544.jpg",
|
||||
alt: "Domaine de la Romanée-Conti",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/still-life-vintage-objects_23-2150244544.jpg", alt: "Domaine de la Romanée-Conti"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Château Margaux",
|
||||
},
|
||||
type: "text", text: "Château Margaux"},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/glass-bar-closeup-old-blank_1203-5006.jpg",
|
||||
alt: "Château Margaux",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/glass-bar-closeup-old-blank_1203-5006.jpg", alt: "Château Margaux"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Screaming Eagle",
|
||||
},
|
||||
type: "text", text: "Screaming Eagle"},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-psd/modern-elegant-template_23-2151879497.jpg",
|
||||
alt: "Screaming Eagle",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-psd/modern-elegant-template_23-2151879497.jpg", alt: "Screaming Eagle"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Vega Sicilia Unico",
|
||||
},
|
||||
type: "text", text: "Vega Sicilia Unico"},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/cup-cherries-bottle-white-wine-glass-blue-surface_114579-34122.jpg",
|
||||
alt: "Vega Sicilia Unico",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/cup-cherries-bottle-white-wine-glass-blue-surface_114579-34122.jpg", alt: "Vega Sicilia Unico"},
|
||||
{
|
||||
type: "text",
|
||||
text: "Masseto",
|
||||
},
|
||||
type: "text", text: "Masseto"},
|
||||
{
|
||||
type: "image",
|
||||
src: "http://img.b2bpic.net/free-photo/red-wine-carafe-grapes-table_23-2149706784.jpg",
|
||||
alt: "Masseto",
|
||||
},
|
||||
type: "image", src: "http://img.b2bpic.net/free-photo/red-wine-carafe-grapes-table_23-2149706784.jpg", alt: "Masseto"},
|
||||
]}
|
||||
showMarqueeCard={true}
|
||||
/>
|
||||
@@ -174,31 +113,20 @@ export default function LandingPage() {
|
||||
<MetricCardThree
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
animationType="depth-3d"
|
||||
metrics={[
|
||||
{
|
||||
id: "m1",
|
||||
icon: DollarSign,
|
||||
title: "Value Given Away",
|
||||
value: "Over $25,000,000",
|
||||
},
|
||||
id: "m1", icon: DollarSign,
|
||||
title: "Value Given Away", value: "Over $25,000,000"},
|
||||
{
|
||||
id: "m2",
|
||||
icon: Award,
|
||||
title: "Bottles Awarded",
|
||||
value: "2,500+",
|
||||
},
|
||||
id: "m2", icon: Award,
|
||||
title: "Bottles Awarded", value: "2,500+"},
|
||||
{
|
||||
id: "m3",
|
||||
icon: Users,
|
||||
title: "Happy Winners",
|
||||
value: "1,800+",
|
||||
},
|
||||
id: "m3", icon: Users,
|
||||
title: "Happy Winners", value: "1,800+"},
|
||||
{
|
||||
id: "m4",
|
||||
icon: Globe,
|
||||
title: "Countries Reached",
|
||||
value: "50+",
|
||||
},
|
||||
id: "m4", icon: Globe,
|
||||
title: "Countries Reached", value: "50+"},
|
||||
]}
|
||||
title="Our Impact & Community Growth"
|
||||
description="Celebrating the incredible journey of our FineWine Raffles community."
|
||||
@@ -212,51 +140,27 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
id: "f1",
|
||||
label: "Step 1",
|
||||
title: "Select Your Tickets",
|
||||
items: [
|
||||
"Browse our exclusive wine raffles.",
|
||||
"Choose your preferred number of tickets.",
|
||||
"Increase your chances with more entries.",
|
||||
],
|
||||
id: "f1", label: "Step 1", title: "Select Your Tickets", items: [
|
||||
"Browse our exclusive wine raffles.", "Choose your preferred number of tickets.", "Increase your chances with more entries."],
|
||||
buttons: [
|
||||
{
|
||||
text: "View Raffles",
|
||||
href: "/#raffles",
|
||||
},
|
||||
text: "View Raffles", href: "/#raffles"},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "f2",
|
||||
label: "Step 2",
|
||||
title: "Answer Wine Trivia",
|
||||
items: [
|
||||
"Test your wine knowledge with our fun trivia game.",
|
||||
"Correct answers confirm your entry.",
|
||||
"A true connoisseur's challenge.",
|
||||
],
|
||||
id: "f2", label: "Step 2", title: "Answer Wine Trivia", items: [
|
||||
"Test your wine knowledge with our fun trivia game.", "Correct answers confirm your entry.", "A true connoisseur's challenge."],
|
||||
buttons: [
|
||||
{
|
||||
text: "Play Now",
|
||||
href: "/how-to-enter",
|
||||
},
|
||||
text: "Play Now", href: "/how-to-enter"},
|
||||
],
|
||||
},
|
||||
{
|
||||
id: "f3",
|
||||
label: "Step 3",
|
||||
title: "Win & Enjoy!",
|
||||
items: [
|
||||
"Participate in the live draw.",
|
||||
"If you win, your dream bottle is shipped securely.",
|
||||
"Savor your new, rare vintage.",
|
||||
],
|
||||
id: "f3", label: "Step 3", title: "Win & Enjoy!", items: [
|
||||
"Participate in the live draw.", "If you win, your dream bottle is shipped securely.", "Savor your new, rare vintage."],
|
||||
buttons: [
|
||||
{
|
||||
text: "See Winners",
|
||||
href: "/winners",
|
||||
},
|
||||
text: "See Winners", href: "/winners"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
@@ -273,53 +177,17 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
products={[
|
||||
{
|
||||
id: "p1",
|
||||
name: "Pétrus",
|
||||
price: "$5,000",
|
||||
variant: "Bordeaux 2000",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/two-glasses-sparkling-wine-macro-photography_53876-32228.jpg",
|
||||
imageAlt: "Pétrus 2000",
|
||||
},
|
||||
id: "p1", name: "Pétrus", price: "$5,000", variant: "Bordeaux 2000", imageSrc: "http://img.b2bpic.net/free-photo/two-glasses-sparkling-wine-macro-photography_53876-32228.jpg", imageAlt: "Pétrus 2000"},
|
||||
{
|
||||
id: "p2",
|
||||
name: "Romanée-Conti",
|
||||
price: "$15,000",
|
||||
variant: "Burgundy 2005",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/baroque-style-with-fruits-vase-arrangement_23-2149629933.jpg",
|
||||
imageAlt: "Domaine de la Romanée-Conti",
|
||||
},
|
||||
id: "p2", name: "Romanée-Conti", price: "$15,000", variant: "Burgundy 2005", imageSrc: "http://img.b2bpic.net/free-photo/baroque-style-with-fruits-vase-arrangement_23-2149629933.jpg", imageAlt: "Domaine de la Romanée-Conti"},
|
||||
{
|
||||
id: "p3",
|
||||
name: "Château Margaux",
|
||||
price: "$1,200",
|
||||
variant: "Bordeaux 1999",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/man-serving-wine-woman-having-date_23-2147736636.jpg",
|
||||
imageAlt: "Château Margaux 1999",
|
||||
},
|
||||
id: "p3", name: "Château Margaux", price: "$1,200", variant: "Bordeaux 1999", imageSrc: "http://img.b2bpic.net/free-photo/man-serving-wine-woman-having-date_23-2147736636.jpg", imageAlt: "Château Margaux 1999"},
|
||||
{
|
||||
id: "p4",
|
||||
name: "Screaming Eagle",
|
||||
price: "$3,500",
|
||||
variant: "Napa Valley 2010",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/top-view-wine-cognac-bottles-with-glasses_23-2148673777.jpg",
|
||||
imageAlt: "Screaming Eagle Cabernet Sauvignon",
|
||||
},
|
||||
id: "p4", name: "Screaming Eagle", price: "$3,500", variant: "Napa Valley 2010", imageSrc: "http://img.b2bpic.net/free-photo/top-view-wine-cognac-bottles-with-glasses_23-2148673777.jpg", imageAlt: "Screaming Eagle Cabernet Sauvignon"},
|
||||
{
|
||||
id: "p5",
|
||||
name: "Vega Sicilia Unico",
|
||||
price: "$800",
|
||||
variant: "Ribera del Duero 2007",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/cologne-bottle-vintage-style_53876-87354.jpg",
|
||||
imageAlt: "Vega Sicilia Unico",
|
||||
},
|
||||
id: "p5", name: "Vega Sicilia Unico", price: "$800", variant: "Ribera del Duero 2007", imageSrc: "http://img.b2bpic.net/free-vector/cologne-bottle-vintage-style_53876-87354.jpg", imageAlt: "Vega Sicilia Unico"},
|
||||
{
|
||||
id: "p6",
|
||||
name: "Masseto",
|
||||
price: "$2,000",
|
||||
variant: "Tuscan 2012",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/front-view-red-wine-black-bottle-red-wine-along-with-glass-blue-grapes-alcohol-winery-drink_140725-16094.jpg",
|
||||
imageAlt: "Masseto Tuscan Wine",
|
||||
},
|
||||
id: "p6", name: "Masseto", price: "$2,000", variant: "Tuscan 2012", imageSrc: "http://img.b2bpic.net/free-photo/front-view-red-wine-black-bottle-red-wine-along-with-glass-blue-grapes-alcohol-winery-drink_140725-16094.jpg", imageAlt: "Masseto Tuscan Wine"},
|
||||
]}
|
||||
title="Recently Won Vintages"
|
||||
description="Explore some of the exquisite wines recently claimed by our community members."
|
||||
@@ -331,14 +199,7 @@ export default function LandingPage() {
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={[
|
||||
"Decanter Magazine",
|
||||
"Wine Enthusiast",
|
||||
"Wine Spectator",
|
||||
"Fine Wine Review",
|
||||
"Sommelier Journal",
|
||||
"Vintage Daily",
|
||||
"Gastronomy Times",
|
||||
]}
|
||||
"Decanter Magazine", "Wine Enthusiast", "Wine Spectator", "Fine Wine Review", "Sommelier Journal", "Vintage Daily", "Gastronomy Times"]}
|
||||
title="As Seen In"
|
||||
description="Trusted by leading wine critics and featured in prestigious publications across the globe."
|
||||
/>
|
||||
@@ -348,15 +209,13 @@ export default function LandingPage() {
|
||||
<ContactCTA
|
||||
useInvertedBackground={true}
|
||||
background={{
|
||||
variant: "radial-gradient",
|
||||
}}
|
||||
variant: "radial-gradient"}}
|
||||
tag="Stay Connected"
|
||||
title="Subscribe to The FineWine Newsletter"
|
||||
description="Get exclusive alerts for new raffles, special offers, and fascinating wine content delivered straight to your inbox."
|
||||
buttons={[
|
||||
{
|
||||
text: "Subscribe Now",
|
||||
onClick: "() => alert('Subscribe!')",
|
||||
text: "Subscribe Now", onClick: () => alert('Subscribe!')
|
||||
},
|
||||
]}
|
||||
/>
|
||||
@@ -367,66 +226,39 @@ export default function LandingPage() {
|
||||
logoText="FineWine Raffles"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Winners",
|
||||
href: "/winners",
|
||||
},
|
||||
label: "Winners", href: "/winners"},
|
||||
{
|
||||
label: "Journal",
|
||||
href: "/journal",
|
||||
},
|
||||
label: "Journal", href: "/journal"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "How To Enter",
|
||||
href: "/how-to-enter",
|
||||
},
|
||||
label: "How To Enter", href: "/how-to-enter"},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
label: "FAQ", href: "/faq"},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "/terms",
|
||||
},
|
||||
label: "Terms of Service", href: "/terms"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "/privacy",
|
||||
},
|
||||
label: "Privacy Policy", href: "/privacy"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "Login",
|
||||
href: "/login",
|
||||
},
|
||||
label: "Login", href: "/login"},
|
||||
{
|
||||
label: "Register",
|
||||
href: "/register",
|
||||
},
|
||||
label: "Register", href: "/register"},
|
||||
{
|
||||
label: "Affiliates",
|
||||
href: "/affiliates",
|
||||
},
|
||||
label: "Affiliates", href: "/affiliates"},
|
||||
{
|
||||
label: "Giving Back",
|
||||
href: "/giving-back",
|
||||
},
|
||||
label: "Giving Back", href: "/giving-back"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
@@ -27,41 +27,25 @@ export default function LandingPage() {
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{
|
||||
name: "Home",
|
||||
id: "/",
|
||||
},
|
||||
name: "Home", id: "/"},
|
||||
{
|
||||
name: "Winners",
|
||||
id: "/winners",
|
||||
},
|
||||
name: "Winners", id: "/winners"},
|
||||
{
|
||||
name: "How To Enter",
|
||||
id: "/how-to-enter",
|
||||
},
|
||||
name: "How To Enter", id: "/how-to-enter"},
|
||||
{
|
||||
name: "Journal",
|
||||
id: "/journal",
|
||||
},
|
||||
name: "Journal", id: "/journal"},
|
||||
{
|
||||
name: "FAQ",
|
||||
id: "/faq",
|
||||
},
|
||||
name: "FAQ", id: "/faq"},
|
||||
{
|
||||
name: "Login",
|
||||
id: "/login",
|
||||
},
|
||||
name: "Login", id: "/login"},
|
||||
{
|
||||
name: "Register",
|
||||
id: "/register",
|
||||
},
|
||||
name: "Register", id: "/register"},
|
||||
]}
|
||||
logoSrc="http://img.b2bpic.net/free-vector/elegant-wine-expert-bartender-logo_742173-11819.jpg"
|
||||
logoAlt="FineWine Raffles Logo"
|
||||
brandName="FineWine Raffles"
|
||||
button={{
|
||||
text: "Enter A Raffle",
|
||||
href: "/#raffles",
|
||||
}}
|
||||
text: "Enter A Raffle", href: "/#raffles"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -71,50 +55,15 @@ export default function LandingPage() {
|
||||
useInvertedBackground={true}
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1",
|
||||
title: "Dream Wine Realized!",
|
||||
quote: "Winning the Pétrus 2000 was absolutely incredible! FineWine Raffles made my dream come true, and the process was so straightforward.",
|
||||
name: "Chad M.",
|
||||
role: "Wine Collector",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-man-white-suit-with-embroidery-sits-windowsill-before-bright-window_8353-8275.jpg",
|
||||
imageAlt: "Chad M.",
|
||||
},
|
||||
id: "t1", title: "Dream Wine Realized!", quote: "Winning the Pétrus 2000 was absolutely incredible! FineWine Raffles made my dream come true, and the process was so straightforward.", name: "Chad M.", role: "Wine Collector", imageSrc: "http://img.b2bpic.net/free-photo/handsome-young-man-white-suit-with-embroidery-sits-windowsill-before-bright-window_8353-8275.jpg", imageAlt: "Chad M."},
|
||||
{
|
||||
id: "t2",
|
||||
title: "A Rare Find, Easily Won",
|
||||
quote: "I never thought I'd own a Romanée-Conti. The trivia game was fun, and the draw was transparent. Highly recommend FineWine Raffles!",
|
||||
name: "Samuel T.",
|
||||
role: "Sommelier",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-holding-glass_23-2149272798.jpg",
|
||||
imageAlt: "Samuel T.",
|
||||
},
|
||||
id: "t2", title: "A Rare Find, Easily Won", quote: "I never thought I'd own a Romanée-Conti. The trivia game was fun, and the draw was transparent. Highly recommend FineWine Raffles!", name: "Samuel T.", role: "Sommelier", imageSrc: "http://img.b2bpic.net/free-photo/close-up-smiley-woman-holding-glass_23-2149272798.jpg", imageAlt: "Samuel T."},
|
||||
{
|
||||
id: "t3",
|
||||
title: "Excitement and Luxury!",
|
||||
quote: "The thrill of entering and then actually winning a Château Lafite Rothschild was amazing. FineWine Raffles provides a truly unique experience.",
|
||||
name: "Emily P.",
|
||||
role: "Restaurant Owner",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/smiling-female-shaking-bottle-champagne_23-2147987973.jpg",
|
||||
imageAlt: "Emily P.",
|
||||
},
|
||||
id: "t3", title: "Excitement and Luxury!", quote: "The thrill of entering and then actually winning a Château Lafite Rothschild was amazing. FineWine Raffles provides a truly unique experience.", name: "Emily P.", role: "Restaurant Owner", imageSrc: "http://img.b2bpic.net/free-photo/smiling-female-shaking-bottle-champagne_23-2147987973.jpg", imageAlt: "Emily P."},
|
||||
{
|
||||
id: "t4",
|
||||
title: "My Favorite Wine Now!",
|
||||
quote: "I won a bottle of Screaming Eagle, a wine I've always admired. The platform is secure, and their communication is excellent.",
|
||||
name: "David K.",
|
||||
role: "Executive Chef",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-sitting-bed-hotel-stylish-evening-dress-sensual-mood-talking-phone-smiling-flirty-looking-sexy_285396-6180.jpg",
|
||||
imageAlt: "David K.",
|
||||
},
|
||||
id: "t4", title: "My Favorite Wine Now!", quote: "I won a bottle of Screaming Eagle, a wine I've always admired. The platform is secure, and their communication is excellent.", name: "David K.", role: "Executive Chef", imageSrc: "http://img.b2bpic.net/free-photo/young-beautiful-woman-sitting-bed-hotel-stylish-evening-dress-sensual-mood-talking-phone-smiling-flirty-looking-sexy_285396-6180.jpg", imageAlt: "David K."},
|
||||
{
|
||||
id: "t5",
|
||||
title: "Fair Play, Great Wins",
|
||||
quote: "FineWine Raffles offers legitimate chances to win truly exceptional wines. I'm now a proud owner of a Vega Sicilia Unico. Fantastic service!",
|
||||
name: "Sarah J.",
|
||||
role: "Wine Blogger",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-woman-eating-dessert-with-fork_23-2147871276.jpg",
|
||||
imageAlt: "Sarah J.",
|
||||
},
|
||||
id: "t5", title: "Fair Play, Great Wins", quote: "FineWine Raffles offers legitimate chances to win truly exceptional wines. I'm now a proud owner of a Vega Sicilia Unico. Fantastic service!", name: "Sarah J.", role: "Wine Blogger", imageSrc: "http://img.b2bpic.net/free-photo/close-up-young-woman-eating-dessert-with-fork_23-2147871276.jpg", imageAlt: "Sarah J."},
|
||||
]}
|
||||
title="Meet Our Lucky Winners"
|
||||
description="Real stories from fine wine enthusiasts who've won their dream bottles with FineWine Raffles."
|
||||
@@ -125,31 +74,20 @@ export default function LandingPage() {
|
||||
<MetricCardThree
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="depth-3d"
|
||||
metrics={[
|
||||
{
|
||||
id: "ms1",
|
||||
icon: Users,
|
||||
title: "Total Unique Winners",
|
||||
value: "1,800+",
|
||||
},
|
||||
id: "ms1", icon: Users,
|
||||
title: "Total Unique Winners", value: "1,800+"},
|
||||
{
|
||||
id: "ms2",
|
||||
icon: Wine,
|
||||
title: "Bottles Awarded Annually",
|
||||
value: "500+",
|
||||
},
|
||||
id: "ms2", icon: Wine,
|
||||
title: "Bottles Awarded Annually", value: "500+"},
|
||||
{
|
||||
id: "ms3",
|
||||
icon: DollarSign,
|
||||
title: "Highest Value Win",
|
||||
value: "$15,000",
|
||||
},
|
||||
id: "ms3", icon: DollarSign,
|
||||
title: "Highest Value Win", value: "$15,000"},
|
||||
{
|
||||
id: "ms4",
|
||||
icon: CalendarCheck,
|
||||
title: "Years in Operation",
|
||||
value: "7+",
|
||||
},
|
||||
id: "ms4", icon: CalendarCheck,
|
||||
title: "Years in Operation", value: "7+"},
|
||||
]}
|
||||
title="Winning Statistics"
|
||||
description="A closer look at the success and impact of our raffle community."
|
||||
@@ -161,66 +99,39 @@ export default function LandingPage() {
|
||||
logoText="FineWine Raffles"
|
||||
columns={[
|
||||
{
|
||||
title: "Company",
|
||||
items: [
|
||||
title: "Company", items: [
|
||||
{
|
||||
label: "About Us",
|
||||
href: "/about",
|
||||
},
|
||||
label: "About Us", href: "/about"},
|
||||
{
|
||||
label: "Winners",
|
||||
href: "/winners",
|
||||
},
|
||||
label: "Winners", href: "/winners"},
|
||||
{
|
||||
label: "Journal",
|
||||
href: "/journal",
|
||||
},
|
||||
label: "Journal", href: "/journal"},
|
||||
{
|
||||
label: "Contact",
|
||||
href: "/contact",
|
||||
},
|
||||
label: "Contact", href: "/contact"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Support",
|
||||
items: [
|
||||
title: "Support", items: [
|
||||
{
|
||||
label: "How To Enter",
|
||||
href: "/how-to-enter",
|
||||
},
|
||||
label: "How To Enter", href: "/how-to-enter"},
|
||||
{
|
||||
label: "FAQ",
|
||||
href: "/faq",
|
||||
},
|
||||
label: "FAQ", href: "/faq"},
|
||||
{
|
||||
label: "Terms of Service",
|
||||
href: "/terms",
|
||||
},
|
||||
label: "Terms of Service", href: "/terms"},
|
||||
{
|
||||
label: "Privacy Policy",
|
||||
href: "/privacy",
|
||||
},
|
||||
label: "Privacy Policy", href: "/privacy"},
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources",
|
||||
items: [
|
||||
title: "Resources", items: [
|
||||
{
|
||||
label: "Login",
|
||||
href: "/login",
|
||||
},
|
||||
label: "Login", href: "/login"},
|
||||
{
|
||||
label: "Register",
|
||||
href: "/register",
|
||||
},
|
||||
label: "Register", href: "/register"},
|
||||
{
|
||||
label: "Affiliates",
|
||||
href: "/affiliates",
|
||||
},
|
||||
label: "Affiliates", href: "/affiliates"},
|
||||
{
|
||||
label: "Giving Back",
|
||||
href: "/giving-back",
|
||||
},
|
||||
label: "Giving Back", href: "/giving-back"},
|
||||
],
|
||||
},
|
||||
]}
|
||||
|
||||
Reference in New Issue
Block a user