Update src/app/field-tests/page.tsx

This commit is contained in:
2026-01-21 20:38:26 +00:00
parent 73d6c20685
commit 5ce6e1b225

View File

@@ -1,24 +1,23 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import Link from "next/link";
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
import BlogCardTwo from '@/components/sections/blog/BlogCardTwo';
import FooterMedia from '@/components/sections/footer/FooterMedia';
export default function FieldTestsPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="background-highlight"
borderRadius="pill"
contentWidth="medium"
sizing="largeSmall"
background="radialGradient"
cardStyle="glass-elevated"
primaryButtonStyle="inset-glow"
secondaryButtonStyle="glass"
headingFontWeight="extrabold"
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="mediumLarge"
sizing="mediumLargeSizeLargeTitles"
background="circleGradient"
cardStyle="gradient-mesh"
primaryButtonStyle="radial-glow"
secondaryButtonStyle="layered"
headingFontWeight="bold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
@@ -31,29 +30,33 @@ export default function FieldTestsPage() {
{ name: "Support", id: "/support" }
]}
button={{ text: "Shop", href: "#shop" }}
className="backdrop-blur-md border border-purple-600"
className="backdrop-blur-lg border border-accent/40"
/>
</div>
<div id="field-tests" data-section="field-tests">
<BlogCardOne
<BlogCardTwo
title="Field Tests"
description="Proof in real spaces. Case studies with room dimensions, before/after response snapshots, and measured outcomes."
blogs={[
{
id: "studio-test", category: "Studio", title: "Studio Calibration Test", excerpt: "20' x 24' mixing suite. BASE Two paired + subwoofer integration protocol. Frequency response: ±2dB 40Hz20kHz in-room post-correction.", imageSrc: "https://images.unsplash.com/photo-1470225620780-dba8ba36b745?w=800&q=80", imageAlt: "Professional studio setup with BASE speakers", authorName: "Field Test", authorAvatar: "https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=200&q=80", date: "Verified Setup"
id: "studio-test", tags: ["Studio", "Calibration", "Reference"],
title: "Studio Calibration Test", excerpt: "20' x 24' mixing suite. BASE Two paired + subwoofer integration. Frequency response: ±2dB 40Hz20kHz in-room.", imageSrc: "https://images.unsplash.com/photo-1470225620780-dba8ba36b745?w=800&q=80", imageAlt: "Professional studio setup with BASE speakers", authorName: "Field Test", date: "Verified Setup"
},
{
id: "loft-test", category: "Loft", title: "Hard-Surface Room Test", excerpt: "18' x 22' converted loft with concrete and glass. Single BASE Two nearfield. Phase correction engaged. Room modes managed via placement algorithm.", imageSrc: "https://images.unsplash.com/photo-1487180144351-b8472da7d491?w=800&q=80", imageAlt: "Loft space acoustic testing", authorName: "Field Test", authorAvatar: "https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=200&q=80", date: "Verified Setup"
id: "loft-test", tags: ["Loft", "Acoustic", "Correction"],
title: "Hard-Surface Room Test", excerpt: "18' x 22' converted loft with concrete and glass. Single BASE Two nearfield with phase correction engaged.", imageSrc: "https://images.unsplash.com/photo-1487180144351-b8472da7d491?w=800&q=80", imageAlt: "Loft space acoustic testing", authorName: "Field Test", date: "Verified Setup"
},
{
id: "apartment-test", category: "Compact", title: "Small Apartment Nearfield", excerpt: "12' x 14' bedroom studio. BASE One pair on close-field mounting. DSP linearization applied. Imaging accuracy maintained at <1m working distance.", imageSrc: "https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&q=80", imageAlt: "Compact apartment audio setup", authorName: "Field Test", authorAvatar: "https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=200&q=80", date: "Verified Setup"
id: "apartment-test", tags: ["Compact", "Nearfield", "Bedroom"],
title: "Small Apartment Nearfield", excerpt: "12' x 14' bedroom studio. BASE One pair on close-field mounting. DSP linearization applied for accurate imaging.", imageSrc: "https://images.unsplash.com/photo-1551288049-bebda4e38f71?w=800&q=80", imageAlt: "Compact apartment audio setup", authorName: "Field Test", date: "Verified Setup"
},
{
id: "live-room-test", category: "Live", title: "Live Room High SPL Test", excerpt: "28' x 30' performance space. BASE Studio system with subwoofer array. 105dB SPL sustained without compression. Full-range clarity at volume.", imageSrc: "https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=800&q=80", imageAlt: "Live performance room with professional speakers", authorName: "Field Test", authorAvatar: "https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=200&q=80", date: "Verified Setup"
id: "live-room-test", tags: ["Live", "Performance", "SPL"],
title: "Live Room High SPL Test", excerpt: "28' x 30' performance space. BASE Studio system with subwoofer array. 105dB SPL sustained without compression.", imageSrc: "https://images.unsplash.com/photo-1493225457124-a3eb161ffa5f?w=800&q=80", imageAlt: "Live performance room with professional speakers", authorName: "Field Test", date: "Verified Setup"
}
]}
animationType="slide-up"
animationType="scale-rotate"
textboxLayout="default"
useInvertedBackground="noInvert"
carouselMode="buttons"
@@ -96,4 +99,4 @@ export default function FieldTestsPage() {
</div>
</ThemeProvider>
);
}
}