Update src/app/media/page.tsx
This commit is contained in:
@@ -19,71 +19,31 @@ export default function MediaPage() {
|
||||
|
||||
const galleryProducts = [
|
||||
{
|
||||
id: "1",
|
||||
name: "Stage Lightning",
|
||||
price: "Festival Magic",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/three-friends-enjoy-by-singing-acoustic-guitar-songs-rooftop_146671-14626.jpg?_wi=3",
|
||||
imageAlt: "Live concert crowd dancing spotlight stage",
|
||||
},
|
||||
id: "1", name: "Stage Lightning", price: "Festival Magic", imageSrc: "http://img.b2bpic.net/free-photo/three-friends-enjoy-by-singing-acoustic-guitar-songs-rooftop_146671-14626.jpg", imageAlt: "Live concert crowd dancing spotlight stage"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Festival Setup",
|
||||
price: "Raw Energy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/abstract-lights-comosition_23-2147798854.jpg?_wi=3",
|
||||
imageAlt: "Festival stage setup lighting equipment",
|
||||
},
|
||||
id: "2", name: "Festival Setup", price: "Raw Energy", imageSrc: "http://img.b2bpic.net/free-photo/abstract-lights-comosition_23-2147798854.jpg", imageAlt: "Festival stage setup lighting equipment"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Crowd Celebration",
|
||||
price: "Pure Joy",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/spending-sunny-day-with-friends_1098-14735.jpg?_wi=3",
|
||||
imageAlt: "Festival crowd dancing beer celebration party",
|
||||
},
|
||||
id: "3", name: "Crowd Celebration", price: "Pure Joy", imageSrc: "http://img.b2bpic.net/free-photo/spending-sunny-day-with-friends_1098-14735.jpg", imageAlt: "Festival crowd dancing beer celebration party"},
|
||||
];
|
||||
|
||||
const testimonials = [
|
||||
{
|
||||
id: "1",
|
||||
name: "Dirk van den Berg",
|
||||
role: "Festival Organizer",
|
||||
company: "Zwarte Cross",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-eating-ice-cream-laughing-portrait-young-woman-sitting-park-sunny-day-eating-icecream-looking-camera-wearing-glasses-enjoying-summer-proposing-camera-summer-lifestyle-concept_197531-30454.jpg?_wi=5",
|
||||
imageAlt: "Dirk van den Berg",
|
||||
},
|
||||
id: "1", name: "Dirk van den Berg", role: "Festival Organizer", company: "Zwarte Cross", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/girl-eating-ice-cream-laughing-portrait-young-woman-sitting-park-sunny-day-eating-icecream-looking-camera-wearing-glasses-enjoying-summer-proposing-camera-summer-lifestyle-concept_197531-30454.jpg", imageAlt: "Dirk van den Berg"},
|
||||
{
|
||||
id: "2",
|
||||
name: "Maria de Vries",
|
||||
role: "Fan & Party Host",
|
||||
company: "Gelderland",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-joyful-people-dancing-outdoors_329181-17928.jpg?_wi=5",
|
||||
imageAlt: "Maria de Vries",
|
||||
},
|
||||
id: "2", name: "Maria de Vries", role: "Fan & Party Host", company: "Gelderland", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-joyful-people-dancing-outdoors_329181-17928.jpg", imageAlt: "Maria de Vries"},
|
||||
{
|
||||
id: "3",
|
||||
name: "Jelle Hartmann",
|
||||
role: "Sound Engineer",
|
||||
company: "Dutch Festivals",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/women-posing-amusement-park-big-wheel_23-2148737837.jpg?_wi=5",
|
||||
imageAlt: "Jelle Hartmann",
|
||||
},
|
||||
id: "3", name: "Jelle Hartmann", role: "Sound Engineer", company: "Dutch Festivals", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/women-posing-amusement-park-big-wheel_23-2148737837.jpg", imageAlt: "Jelle Hartmann"},
|
||||
{
|
||||
id: "4",
|
||||
name: "Petra Smit",
|
||||
role: "Band Fan",
|
||||
company: "Utrecht",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/women-showing-each-other-purchased-things_23-2147688448.jpg?_wi=4",
|
||||
imageAlt: "Petra Smit",
|
||||
},
|
||||
id: "4", name: "Petra Smit", role: "Band Fan", company: "Utrecht", rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/women-showing-each-other-purchased-things_23-2147688448.jpg", imageAlt: "Petra Smit"},
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Navigation",
|
||||
items: [
|
||||
title: "Navigation", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Shows", href: "/shows" },
|
||||
@@ -91,24 +51,21 @@ export default function MediaPage() {
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Pages",
|
||||
items: [
|
||||
title: "Pages", items: [
|
||||
{ label: "Media", href: "/media" },
|
||||
{ label: "Merchandise", href: "/merch" },
|
||||
{ label: "Booking", href: "/booking" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Social",
|
||||
items: [
|
||||
title: "Social", items: [
|
||||
{ label: "Instagram", href: "https://instagram.com" },
|
||||
{ label: "Facebook", href: "https://facebook.com" },
|
||||
{ label: "YouTube", href: "https://youtube.com" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Contact",
|
||||
items: [
|
||||
title: "Contact", items: [
|
||||
{ label: "Email", href: "#" },
|
||||
{ label: "Book Us", href: "/booking" },
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user