Update src/app/collection/page.tsx
This commit is contained in:
@@ -19,24 +19,21 @@ export default function CollectionPage() {
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Shop",
|
||||
items: [
|
||||
title: "Shop", items: [
|
||||
{ label: "Browse Collection", href: "collection" },
|
||||
{ label: "Shop on Discogs", href: "https://www.discogs.com" },
|
||||
{ label: "How to Buy", href: "how-to-buy" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "About",
|
||||
items: [
|
||||
title: "About", items: [
|
||||
{ label: "Our Story", href: "about" },
|
||||
{ label: "Contact", href: "contact" },
|
||||
{ label: "Privacy Policy", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Community",
|
||||
items: [
|
||||
title: "Community", items: [
|
||||
{ label: "Vinyl Collecting Tips", href: "#" },
|
||||
{ label: "Music Resources", href: "#" },
|
||||
{ label: "Discogs Community", href: "https://www.discogs.com" }
|
||||
@@ -78,52 +75,27 @@ export default function CollectionPage() {
|
||||
gridVariant="bento-grid"
|
||||
products={[
|
||||
{
|
||||
id: "vinyl-001",
|
||||
name: "Classic Jazz Collection",
|
||||
price: "Check Discogs",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/retro-music-record-store-medium-rectangle-banner-template_742173-19354.jpg?_wi=4",
|
||||
imageAlt: "Jazz vinyl record album"
|
||||
id: "vinyl-001", name: "Classic Jazz Collection", price: "Check Discogs", imageSrc: "http://img.b2bpic.net/free-vector/retro-music-record-store-medium-rectangle-banner-template_742173-19354.jpg?_wi=4", imageAlt: "Jazz vinyl record album"
|
||||
},
|
||||
{
|
||||
id: "vinyl-002",
|
||||
name: "Soul Classics Vol. 1",
|
||||
price: "Check Discogs",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/vinyl-disc-record-player_23-2147781383.jpg?_wi=4",
|
||||
imageAlt: "Soul music vinyl album"
|
||||
id: "vinyl-002", name: "Soul Classics Vol. 1", price: "Check Discogs", imageSrc: "http://img.b2bpic.net/free-photo/vinyl-disc-record-player_23-2147781383.jpg?_wi=4", imageAlt: "Soul music vinyl album"
|
||||
},
|
||||
{
|
||||
id: "vinyl-003",
|
||||
name: "Electronic Dreams",
|
||||
price: "Check Discogs",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/indie-music-event-facebook-template_23-2150256726.jpg?_wi=3",
|
||||
imageAlt: "Electronic music vinyl album"
|
||||
id: "vinyl-003", name: "Electronic Dreams", price: "Check Discogs", imageSrc: "http://img.b2bpic.net/free-psd/indie-music-event-facebook-template_23-2150256726.jpg?_wi=3", imageAlt: "Electronic music vinyl album"
|
||||
},
|
||||
{
|
||||
id: "vinyl-004",
|
||||
name: "Folk Acoustic Sessions",
|
||||
price: "Check Discogs",
|
||||
imageSrc: "http://img.b2bpic.net/free-vector/international-jazz-day-retro-vintage-flyer-poster_23-2148126917.jpg?_wi=3",
|
||||
imageAlt: "Folk acoustic vinyl album"
|
||||
id: "vinyl-004", name: "Folk Acoustic Sessions", price: "Check Discogs", imageSrc: "http://img.b2bpic.net/free-vector/international-jazz-day-retro-vintage-flyer-poster_23-2148126917.jpg?_wi=3", imageAlt: "Folk acoustic vinyl album"
|
||||
},
|
||||
{
|
||||
id: "vinyl-005",
|
||||
name: "Hip Hop Legends",
|
||||
price: "Check Discogs",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-cartridge-portable-gramophone-with-blurred-background_181624-18095.jpg?_wi=3",
|
||||
imageAlt: "Hip hop vinyl album"
|
||||
id: "vinyl-005", name: "Hip Hop Legends", price: "Check Discogs", imageSrc: "http://img.b2bpic.net/free-photo/closeup-shot-cartridge-portable-gramophone-with-blurred-background_181624-18095.jpg?_wi=3", imageAlt: "Hip hop vinyl album"
|
||||
},
|
||||
{
|
||||
id: "vinyl-006",
|
||||
name: "Indie Pop Vibes",
|
||||
price: "Check Discogs",
|
||||
imageSrc: "http://img.b2bpic.net/free-psd/music-fest-social-media-promo-template-with-multicolored-liquid-effect_23-2149508210.jpg?_wi=3",
|
||||
imageAlt: "Indie pop vinyl album"
|
||||
id: "vinyl-006", name: "Indie Pop Vibes", price: "Check Discogs", imageSrc: "http://img.b2bpic.net/free-psd/music-fest-social-media-promo-template-with-multicolored-liquid-effect_23-2149508210.jpg?_wi=3", imageAlt: "Indie pop vinyl album"
|
||||
}
|
||||
]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Shop on Discogs",
|
||||
href: "https://www.discogs.com"
|
||||
text: "Shop on Discogs", href: "https://www.discogs.com"
|
||||
}
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
@@ -142,12 +114,10 @@ export default function CollectionPage() {
|
||||
useInvertedBackground={false}
|
||||
buttons={[
|
||||
{
|
||||
text: "Shop on Discogs",
|
||||
href: "https://www.discogs.com"
|
||||
text: "Shop on Discogs", href: "https://www.discogs.com"
|
||||
},
|
||||
{
|
||||
text: "Back to Home",
|
||||
href: "/"
|
||||
text: "Back to Home", href: "/"
|
||||
}
|
||||
]}
|
||||
buttonAnimation="blur-reveal"
|
||||
@@ -163,4 +133,4 @@ export default function CollectionPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user