Update src/app/destinations/page.tsx

This commit is contained in:
2026-01-28 20:52:13 +00:00
parent 5134f173d9
commit dbd01e63aa

View File

@@ -48,36 +48,16 @@ export default function DestinationsPage() {
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
products={[ products={[
{ {
id: "1", id: "1", name: "Tallinn Old Town", price: "Medieval Magic", imageSrc: "https://img.b2bpic.net/free-photo/landscape-centre-southeastern-transylvania-with-local-church-multiple-pubs_1268-20194.jpg", imageAlt: "tallinn estonia old town historic architecture", onProductClick: () => {}
name: "Tallinn Old Town",
price: "Medieval Magic",
imageSrc: "https://img.b2bpic.net/free-photo/landscape-centre-southeastern-transylvania-with-local-church-multiple-pubs_1268-20194.jpg",
imageAlt: "tallinn estonia old town historic architecture",
onProductClick: () => {}
}, },
{ {
id: "2", id: "2", name: "Estonian Wilderness", price: "Nature Paradise", imageSrc: "https://img.b2bpic.net/free-photo/facades-baroque-building-old-town-square-prague_1401-360.jpg", imageAlt: "estonia forest nature lakes wilderness", onProductClick: () => {}
name: "Estonian Wilderness",
price: "Nature Paradise",
imageSrc: "https://img.b2bpic.net/free-photo/facades-baroque-building-old-town-square-prague_1401-360.jpg",
imageAlt: "estonia forest nature lakes wilderness",
onProductClick: () => {}
}, },
{ {
id: "3", id: "3", name: "Island Getaways", price: "Coastal Escape", imageSrc: "https://img.b2bpic.net/free-photo/old-roof-architecture-quebec-city_649448-2252.jpg", imageAlt: "estonia islands saaremaa muhu beach", onProductClick: () => {}
name: "Island Getaways",
price: "Coastal Escape",
imageSrc: "https://img.b2bpic.net/free-photo/old-roof-architecture-quebec-city_649448-2252.jpg",
imageAlt: "estonia islands saaremaa muhu beach",
onProductClick: () => {}
}, },
{ {
id: "4", id: "4", name: "National Parks", price: "Wild Adventure", imageSrc: "https://img.b2bpic.net/free-photo/beautiful-mountain-forest-landscape_23-2149063008.jpg", imageAlt: "estonia hiking nature forest trails", onProductClick: () => {}
name: "National Parks",
price: "Wild Adventure",
imageSrc: "https://img.b2bpic.net/free-photo/beautiful-mountain-forest-landscape_23-2149063008.jpg",
imageAlt: "estonia hiking nature forest trails",
onProductClick: () => {}
} }
]} ]}
/> />
@@ -94,32 +74,16 @@ export default function DestinationsPage() {
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
metrics={[ metrics={[
{ {
id: "1", id: "1", value: "2.2K", title: "Islands", description: "One of the world's longest coastlines with 2,222 islands dotting the Baltic Sea", icon: Waves
value: "2.2K",
title: "Islands",
description: "One of the world's longest coastlines with 2,222 islands dotting the Baltic Sea",
icon: Waves
}, },
{ {
id: "2", id: "2", value: "1.3M", title: "Population", description: "A tight-knit nation where innovation and tradition coexist harmoniously", icon: Users
value: "1.3M",
title: "Population",
description: "A tight-knit nation where innovation and tradition coexist harmoniously",
icon: Users
}, },
{ {
id: "3", id: "3", value: "50%+", title: "Forest Coverage", description: "Over half the country is pristine forest, providing endless natural beauty and adventure", icon: Trees
value: "50%+",
title: "Forest Coverage",
description: "Over half the country is pristine forest, providing endless natural beauty and adventure",
icon: Trees
}, },
{ {
id: "4", id: "4", value: "1991", title: "Independence", description: "Restored independence through the Singing Revolution, a bloodless victory celebrating freedom", icon: Flag
value: "1991",
title: "Independence",
description: "Restored independence through the Singing Revolution, a bloodless victory celebrating freedom",
icon: Flag
} }
]} ]}
/> />
@@ -146,8 +110,7 @@ export default function DestinationsPage() {
logoText="Estonia" logoText="Estonia"
columns={[ columns={[
{ {
title: "Explore", title: "Explore", items: [
items: [
{ label: "Destinations", href: "/destinations" }, { label: "Destinations", href: "/destinations" },
{ label: "Cultural Sites", href: "/culture" }, { label: "Cultural Sites", href: "/culture" },
{ label: "Islands & Nature", href: "/destinations" }, { label: "Islands & Nature", href: "/destinations" },
@@ -155,8 +118,7 @@ export default function DestinationsPage() {
] ]
}, },
{ {
title: "Visit", title: "Visit", items: [
items: [
{ label: "Plan Your Trip", href: "/contact" }, { label: "Plan Your Trip", href: "/contact" },
{ label: "Accommodation", href: "/destinations" }, { label: "Accommodation", href: "/destinations" },
{ label: "Transportation", href: "/destinations" }, { label: "Transportation", href: "/destinations" },
@@ -164,8 +126,7 @@ export default function DestinationsPage() {
] ]
}, },
{ {
title: "Discover", title: "Discover", items: [
items: [
{ label: "Estonian Culture", href: "/culture" }, { label: "Estonian Culture", href: "/culture" },
{ label: "Local Events", href: "/culture" }, { label: "Local Events", href: "/culture" },
{ label: "Food & Dining", href: "/culture" }, { label: "Food & Dining", href: "/culture" },
@@ -173,8 +134,7 @@ export default function DestinationsPage() {
] ]
}, },
{ {
title: "Connect", title: "Connect", items: [
items: [
{ label: "Contact Us", href: "mailto:visit@estonia.com" }, { label: "Contact Us", href: "mailto:visit@estonia.com" },
{ label: "Social Media", href: "/contact" }, { label: "Social Media", href: "/contact" },
{ label: "Newsletter", href: "/contact" }, { label: "Newsletter", href: "/contact" },
@@ -187,4 +147,4 @@ export default function DestinationsPage() {
/> />
</ThemeProvider> </ThemeProvider>
); );
} }