Update src/app/systems/page.tsx

This commit is contained in:
2026-01-21 20:27:16 +00:00
parent 07edb4263f
commit 6fec82cf5b

View File

@@ -11,13 +11,13 @@ export default function SystemsPage() {
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="background-highlight"
borderRadius="sharp"
contentWidth="small"
borderRadius="pill"
contentWidth="medium"
sizing="largeSmall"
background="none"
cardStyle="elevated"
primaryButtonStyle="flat"
secondaryButtonStyle="layered"
background="radialGradient"
cardStyle="glass-elevated"
primaryButtonStyle="inset-glow"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
@@ -31,7 +31,7 @@ export default function SystemsPage() {
{ name: "Support", id: "/support" }
]}
button={{ text: "Shop", href: "#shop" }}
className="backdrop-blur-md border border-gray-300"
className="backdrop-blur-md border border-purple-600"
/>
</div>
@@ -41,34 +41,16 @@ export default function SystemsPage() {
description="Modular lineup engineered for precision across nearfield, reference, and flagship applications. Open datasheets, detailed specs, and configurator tools for each model."
products={[
{
id: "base-one",
brand: "BASE",
name: "BASE One",
price: "$2,495",
rating: 5,
reviewCount: "18 verified setups",
imageSrc: "https://img.b2bpic.net/free-photo/square-music-speaker-control-knobs-closeup-details_169016-51505.jpg",
imageAlt: "BASE One compact nearfield monitor speaker"
id: "base-one", brand: "BASE", name: "BASE One", price: "$2,495", rating: 5,
reviewCount: "18 verified setups", imageSrc: "https://images.unsplash.com/photo-1514525253161-7a46d19cd819?w=800&q=80", imageAlt: "BASE One compact nearfield monitor speaker"
},
{
id: "base-two",
brand: "BASE",
name: "BASE Two",
price: "$4,295",
rating: 5,
reviewCount: "34 verified setups",
imageSrc: "https://img.b2bpic.net/free-photo/audio-columns-are-system-several-pieces-close-up-audio-systems_78492-3673.jpg",
imageAlt: "BASE Two room reference monitor speaker"
id: "base-two", brand: "BASE", name: "BASE Two", price: "$4,295", rating: 5,
reviewCount: "34 verified setups", imageSrc: "https://images.unsplash.com/photo-1459749411175-04bf5292ceea?w=800&q=80", imageAlt: "BASE Two room reference monitor speaker"
},
{
id: "base-studio",
brand: "BASE",
name: "BASE Studio",
price: "$7,495",
rating: 5,
reviewCount: "12 verified setups",
imageSrc: "https://img.b2bpic.net/free-photo/crop-amplifier-black_23-2147781794.jpg",
imageAlt: "BASE Studio flagship monitoring system"
id: "base-studio", brand: "BASE", name: "BASE Studio", price: "$7,495", rating: 5,
reviewCount: "12 verified setups", imageSrc: "https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=800&q=80", imageAlt: "BASE Studio flagship monitoring system"
}
]}
textboxLayout="default"
@@ -80,14 +62,13 @@ export default function SystemsPage() {
<div id="footer" data-section="footer">
<FooterMedia
imageSrc="https://img.b2bpic.net/free-photo/press-reporter-fallowing-leads-case_23-2149579709.jpg"
imageSrc="https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=800&q=80"
imageAlt="BASE laboratory testing environment"
logoText="BASE"
copyrightText="© 2025 BASE Audio Systems. All rights reserved."
columns={[
{
title: "Products",
items: [
title: "Products", items: [
{ label: "BASE One", href: "/systems" },
{ label: "BASE Two", href: "/systems" },
{ label: "BASE Studio", href: "/systems" },
@@ -95,8 +76,7 @@ export default function SystemsPage() {
]
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Measurement Reports", href: "/performance" },
{ label: "Quick Start", href: "/support" },
{ label: "Field Tests", href: "/field-tests" },
@@ -104,8 +84,7 @@ export default function SystemsPage() {
]
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About", href: "/about" },
{ label: "Support", href: "/support" },
{ label: "Contact", href: "/contact" },
@@ -117,4 +96,4 @@ export default function SystemsPage() {
</div>
</ThemeProvider>
);
}
}