Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-07 18:44:14 +00:00
2 changed files with 15 additions and 50 deletions

View File

@@ -1,59 +1,25 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Montserrat } from "next/font/google";
import "./styles/variables.css";
import "./styles/base.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const montserrat = Montserrat({
variable: "--font-montserrat", subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"]
});
export const metadata: Metadata = {
title: "Piano Tuning Lancaster PA | Brubaker John R", description: "Expert piano tuning and key repair in Lancaster PA. Over 50 years serving families, churches, and schools. Call (717) 397-2528 for in-home service.", keywords: "piano tuning Lancaster PA, piano tuner near me, piano key repair Lancaster, piano maintenance Lancaster County, professional piano tuning", metadataBase: new URL("https://brubaker-piano-tuning.com"),
alternates: {
canonical: "https://brubaker-piano-tuning.com"
},
openGraph: {
title: "Piano Tuning Lancaster PA | Brubaker John R", description: "Expert piano tuning with 50+ years experience. Serving Lancaster County families, churches, and music teachers.", url: "https://brubaker-piano-tuning.com", siteName: "Brubaker Piano Tuning", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/teenager-playing-piano-cozy-cafe_23-2147863999.jpg", alt: "Professional piano tuning service"
}
]
},
twitter: {
card: "summary_large_image", title: "Piano Tuning Lancaster PA | Brubaker John R", description: "Expert piano tuning with 50+ years experience. Call (717) 397-2528.", images: ["http://img.b2bpic.net/free-photo/teenager-playing-piano-cozy-cafe_23-2147863999.jpg"]
},
robots: {
index: true,
follow: true
}
title: "Brubaker Piano Tuning - Expert Piano Tuning in Lancaster PA", description: "Professional piano tuning and repairs with over 50 years of experience. Trusted by Lancaster families, churches, and music teachers. Call (717) 397-2528."
};
export default function RootLayout({
children,
}: Readonly<{
children
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${montserrat.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1421,7 +1387,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -127,22 +127,22 @@ export default function LandingPage() {
tag="Reviews"
testimonials={[
{
id: "1", name: "Sarah Mitchell", role: "Piano Teacher", testimonial: "John has tuned my pianos for over 20 years. His precision and reliability are unmatched. My students always notice the difference in sound quality after his work.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-female-guitarist_23-2148915817.jpg", imageAlt: "Sarah Mitchell, Piano Teacher"
id: "1", name: "Sarah Mitchell", role: "Piano Teacher", testimonial: "John has tuned my pianos for over 20 years. His precision and reliability are unmatched. My students always notice the difference in sound quality after his work."
},
{
id: "2", name: "Michael Chen", role: "Church Music Director", testimonial: "We trust John with our church's grand piano. He's professional, punctual, and genuinely cares about keeping our instrument in perfect condition for our services.", imageSrc: "http://img.b2bpic.net/free-photo/pretty-blond-woman-showing-double-thumbs-up-green-jacket-looking-merry-front-view_176474-71773.jpg", imageAlt: "Michael Chen, Church Music Director"
id: "2", name: "Michael Chen", role: "Church Music Director", testimonial: "We trust John with our church's grand piano. He's professional, punctual, and genuinely cares about keeping our instrument in perfect condition for our services."
},
{
id: "3", name: "Emily Rodriguez", role: "Homeowner", testimonial: "John has been maintaining our family piano for decades. He's friendly, skilled, and always leaves the piano sounding amazing. Highly recommend!", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-man-correcting-grammar-mistakes_23-2150171372.jpg", imageAlt: "Emily Rodriguez, Homeowner"
id: "3", name: "Emily Rodriguez", role: "Homeowner", testimonial: "John has been maintaining our family piano for decades. He's friendly, skilled, and always leaves the piano sounding amazing. Highly recommend!"
},
{
id: "4", name: "David Kim", role: "Music School Director", testimonial: "For our school's fleet of pianos, John is our go-to technician. His work is excellent, his prices are fair, and he's always reliable.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-woman-looking-away_23-2148323656.jpg", imageAlt: "David Kim, Music School Director"
id: "4", name: "David Kim", role: "Music School Director", testimonial: "For our school's fleet of pianos, John is our go-to technician. His work is excellent, his prices are fair, and he's always reliable."
},
{
id: "5", name: "Jennifer Walsh", role: "Concert Pianist", testimonial: "John's tuning is impeccable. Whether for practice or performance, my piano sounds pristine after his care. He truly understands the needs of serious musicians.", imageSrc: "http://img.b2bpic.net/free-photo/teen-girl-listening-boyfriend-playing-piano_23-2147860796.jpg", imageAlt: "Jennifer Walsh, Concert Pianist"
id: "5", name: "Jennifer Walsh", role: "Concert Pianist", testimonial: "John's tuning is impeccable. Whether for practice or performance, my piano sounds pristine after his care. He truly understands the needs of serious musicians."
},
{
id: "6", name: "Robert Thompson", role: "Piano Enthusiast", testimonial: "I've been a customer for over 30 years. John's expertise, professionalism, and warmth keep me coming back. He's the best in Lancaster.", imageSrc: "http://img.b2bpic.net/free-photo/sporty-woman-holding-clipboard_1139-142.jpg", imageAlt: "Robert Thompson, Piano Enthusiast"
id: "6", name: "Robert Thompson", role: "Piano Enthusiast", testimonial: "I've been a customer for over 30 years. John's expertise, professionalism, and warmth keep me coming back. He's the best in Lancaster."
}
]}
textboxLayout="default"