Update src/app/about/page.tsx

This commit is contained in:
2026-03-06 16:40:21 +00:00
parent 47a49bb4e6
commit 80de195f42

View File

@@ -17,24 +17,21 @@ export default function AboutPage() {
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" },
@@ -68,17 +65,12 @@ export default function AboutPage() {
<TextSplitAbout
title="About Noma Vinyl"
description={[
"Noma Vinyl is a small independent vinyl record shop run with passion for music and collecting. We believe vinyl records offer a unique listening experience—the warmth of analog sound combined with beautiful artwork that digital formats simply cannot replicate.",
"Each record in our collection has been personally selected and carefully inspected to ensure quality. Whether you're a seasoned collector or just discovering the joy of vinyl, we're here to help you find your next favorite album.",
"All purchases are made through Discogs, our trusted marketplace partner. This ensures secure transactions, buyer protection, and a seamless shopping experience while supporting the broader vinyl community.",
]}
"Noma Vinyl is a small independent vinyl record shop run with passion for music and collecting. We believe vinyl records offer a unique listening experience—the warmth of analog sound combined with beautiful artwork that digital formats simply cannot replicate.", "Each record in our collection has been personally selected and carefully inspected to ensure quality. Whether you're a seasoned collector or just discovering the joy of vinyl, we're here to help you find your next favorite album.", "All purchases are made through Discogs, our trusted marketplace partner. This ensures secure transactions, buyer protection, and a seamless shopping experience while supporting the broader vinyl community."]}
useInvertedBackground={true}
showBorder={true}
buttons={[
{
text: "Shop on Discogs",
href: "https://www.discogs.com",
},
text: "Shop on Discogs", href: "https://www.discogs.com"},
]}
buttonAnimation="blur-reveal"
/>
@@ -92,4 +84,4 @@ export default function AboutPage() {
</div>
</ThemeProvider>
);
}
}