Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-14 21:16:22 +00:00
6 changed files with 82 additions and 57 deletions

View File

@@ -112,7 +112,7 @@ export default function AboutPage() {
quote: "Music as a unifying force bringing together people of all backgrounds, ages, and abilities to celebrate creativity and connection.",
name: "Our Philosophy",
role: "Music as Community Bridge",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-holding-guitars_23-2149223608.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-holding-guitars_23-2149223608.jpg?_wi=2",
},
{
id: "value-2",
@@ -120,7 +120,7 @@ export default function AboutPage() {
quote: "All ages, all abilities, all backgrounds welcome. We maintain the highest standards of instruction while ensuring everyone feels welcome.",
name: "Our Commitment",
role: "Quality & Accessibility",
imageSrc: "http://img.b2bpic.net/free-photo/band-mates-performing-together_107420-96135.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/band-mates-performing-together_107420-96135.jpg?_wi=2",
},
{
id: "value-3",
@@ -128,7 +128,7 @@ export default function AboutPage() {
quote: "We create innovative community projects and programming that extend beyond traditional concerts, engaging our community in unique ways.",
name: "Our Approach",
role: "Creative Community Engagement",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-musicians-working-studio_23-2150265049.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-musicians-working-studio_23-2150265049.jpg?_wi=2",
},
]}
/>

View File

@@ -103,7 +103,7 @@ export default function EventsPage() {
category: "Concert",
title: "Mozart Requiem",
excerpt: "A powerful and moving performance of Mozart's Requiem. Presented at the historic Stockey Centre with special guest soloists.",
imageSrc: "http://img.b2bpic.net/free-photo/people-celebrating-jazz-day-event-together_23-2148877003.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-celebrating-jazz-day-event-together_23-2148877003.jpg?_wi=2",
imageAlt: "Mozart Requiem concert poster",
authorName: "Whispering River Music",
authorAvatar: "http://img.b2bpic.net/free-vector/modern-museum-logo-template_742173-17607.jpg",
@@ -114,7 +114,7 @@ export default function EventsPage() {
category: "Concert",
title: "Spring Community Orchestra Concert",
excerpt: "Our community orchestra performs a diverse program featuring works from classical masters and contemporary composers.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-romantic-girls-park-with-violin_1157-23784.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-romantic-girls-park-with-violin_1157-23784.jpg?_wi=2",
imageAlt: "Spring concert performance",
authorName: "Whispering River Music",
authorAvatar: "http://img.b2bpic.net/free-vector/modern-museum-logo-template_742173-17607.jpg",
@@ -125,7 +125,7 @@ export default function EventsPage() {
category: "Workshop",
title: "Beginner Violin Workshop",
excerpt: "Join us for an interactive workshop perfect for anyone curious about learning violin. No experience necessary!",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-playing-violin_23-2148485111.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-playing-violin_23-2148485111.jpg?_wi=2",
imageAlt: "Beginner violin workshop",
authorName: "Whispering River Music",
authorAvatar: "http://img.b2bpic.net/free-vector/modern-museum-logo-template_742173-17607.jpg",
@@ -136,7 +136,7 @@ export default function EventsPage() {
category: "Community Event",
title: "Music in the Park - Summer Series",
excerpt: "Free outdoor concerts celebrating music in nature. Bring a blanket, bring your friends, and enjoy live performances.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-playing-guitar_23-2149409394.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-playing-guitar_23-2149409394.jpg?_wi=2",
imageAlt: "Outdoor summer concert in park",
authorName: "Whispering River Music",
authorAvatar: "http://img.b2bpic.net/free-vector/modern-museum-logo-template_742173-17607.jpg",

View File

@@ -1,24 +1,47 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Public_Sans } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Public_Sans } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const publicSans = Public_Sans({
variable: "--font-public-sans",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Whispering River Music - Community Orchestra & Violin Lessons",
description: "Whispering River Music offers violin lessons, community orchestra, and live concerts in Foley, Ontario. Registered charity since 1987. Learn music, join our orchestra, or support our mission.",
keywords: "violin lessons Foley, community orchestra Ontario, music education Parry Sound, violin classes, music lessons Ontario",
openGraph: {
title: "Whispering River Music - Community Orchestra & Violin Lessons",
description: "Learn violin, join our orchestra, and experience live music in your community. Serving Foley, Parry Sound, and Seguin Township.",
siteName: "Whispering River Music",
type: "website",
},
twitter: {
card: "summary_large_image",
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +50,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${publicSans.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${publicSans.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +64,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -101,11 +101,11 @@ export default function LessonsPage() {
title: "Private Violin Lessons",
description: "One-on-one instruction tailored to your level and learning pace. All ages welcome.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/lovely-couple-spending-quality-time-together_53876-14411.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/lovely-couple-spending-quality-time-together_53876-14411.jpg?_wi=2",
imageAlt: "private music lesson one on one instruction",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/learning-play-new-song-piano-artistic-young-boy-talking-with-his-music-teacher-private-lesson_662251-1522.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/learning-play-new-song-piano-artistic-young-boy-talking-with-his-music-teacher-private-lesson_662251-1522.jpg?_wi=2",
imageAlt: "professional violin instructor music teacher",
},
},
@@ -114,11 +114,11 @@ export default function LessonsPage() {
title: "Group String Classes",
description: "Learn with peers in a supportive, collaborative environment. Build ensemble skills and lasting friendships.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/young-student-learning-how-hold-guitar_23-2148511106.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-student-learning-how-hold-guitar_23-2148511106.jpg?_wi=2",
imageAlt: "group string class ensemble learning together",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/guitar-teacher-overseeing-woman-learning-how-play_23-2148524651.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/guitar-teacher-overseeing-woman-learning-how-play_23-2148524651.jpg?_wi=2",
imageAlt: "ensemble group practicing together collaboration",
},
},
@@ -127,11 +127,11 @@ export default function LessonsPage() {
title: "Adult Beginner Programs",
description: "Never too late to learn. Flexible scheduling for adults returning to music or starting fresh.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-making-music_23-2150466018.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-making-music_23-2150466018.jpg?_wi=2",
imageAlt: "adult music class violin beginner learning",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/guy-with-violon_1157-8509.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/guy-with-violon_1157-8509.jpg?_wi=2",
imageAlt: "adult musician performing violin concert stage",
},
},
@@ -154,7 +154,7 @@ export default function LessonsPage() {
quote: "Learning violin with Whispering River Music has been one of the best decisions of my life. The instructors are patient, knowledgeable, and truly passionate about music.",
name: "Sarah Johnson",
role: "Student, Adult Beginner Class",
imageSrc: "http://img.b2bpic.net/free-photo/woman-celebrating-jazz-day-event_23-2148876984.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-celebrating-jazz-day-event_23-2148876984.jpg?_wi=2",
imageAlt: "happy violin student smiling portrait photo",
},
{
@@ -163,7 +163,7 @@ export default function LessonsPage() {
quote: "My daughter has thrived under the guidance of the instructors at Whispering River Music. They bring out the best in every student.",
name: "Emily Rodriguez",
role: "Parent, Youth Violin Student",
imageSrc: "http://img.b2bpic.net/free-photo/mother-son-posing-smiling_23-2148414883.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mother-son-posing-smiling_23-2148414883.jpg?_wi=2",
imageAlt: "parent satisfied happy portrait photo",
},
{
@@ -172,7 +172,7 @@ export default function LessonsPage() {
quote: "The group classes have helped me build confidence and make new friends. It's more than just learning music it's about belonging.",
name: "David Kim",
role: "Student, Group String Class",
imageSrc: "http://img.b2bpic.net/free-photo/expressive-man-posing-outdoor_344912-3107.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/expressive-man-posing-outdoor_344912-3107.jpg?_wi=2",
imageAlt: "music lover concert attendee portrait photo",
},
]}

View File

@@ -101,11 +101,11 @@ export default function OrchestraPage() {
title: "Weekly Rehearsals",
description: "Gather with fellow musicians for collaborative rehearsals. Build skills and create beautiful music together.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/women-playing-various-instrument_107420-64960.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/women-playing-various-instrument_107420-64960.jpg?_wi=2",
imageAlt: "orchestra rehearsal collaborative practice session",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/happy-people-making-jazz-music-uk_23-2149357030.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-people-making-jazz-music-uk_23-2149357030.jpg?_wi=2",
imageAlt: "orchestra conductor leading musicians performing",
},
},
@@ -114,11 +114,11 @@ export default function OrchestraPage() {
title: "Performance Opportunities",
description: "Perform at community events, concerts, and celebrations throughout the season. Share your talent with neighbors and friends.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/guitar-piano-keys-closeup-blurred-background-with-bokeh_169016-42654.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/guitar-piano-keys-closeup-blurred-background-with-bokeh_169016-42654.jpg?_wi=2",
imageAlt: "orchestra performing concert stage audience",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/girl-with-smartphone-cocktail-nature-deck-chair-summer-day-off_1321-3731.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/girl-with-smartphone-cocktail-nature-deck-chair-summer-day-off_1321-3731.jpg?_wi=2",
imageAlt: "outdoor orchestra concert park performance",
},
},
@@ -127,11 +127,11 @@ export default function OrchestraPage() {
title: "Community Connection",
description: "Be part of a supportive, inspiring community dedicated to the arts. Friendships, mentorship, and shared creative joy.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/family-enjoying-stop-their-road-trip_23-2149401852.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/family-enjoying-stop-their-road-trip_23-2149401852.jpg?_wi=2",
imageAlt: "musicians socializing community gathering event",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/people-celebrating-jazz-day-event_23-2148876990.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-celebrating-jazz-day-event_23-2148876990.jpg?_wi=2",
imageAlt: "orchestra ensemble group photo musicians",
},
},
@@ -154,7 +154,7 @@ export default function OrchestraPage() {
quote: "After 20 years away from music, I found my way back through the community orchestra. Everyone is so supportive and encouraging.",
name: "Michael Chen",
role: "Community Orchestra Member",
imageSrc: "http://img.b2bpic.net/free-photo/young-musician-holding-guitar-sitting-sofa-high-quality-photo_114579-35634.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-musician-holding-guitar-sitting-sofa-high-quality-photo_114579-35634.jpg?_wi=2",
imageAlt: "mature musician portrait professional photo",
},
{
@@ -163,7 +163,7 @@ export default function OrchestraPage() {
quote: "Whispering River Music brings people together and enriches our cultural landscape. I'm grateful for everything they do.",
name: "Patricia Thompson",
role: "Community Member & Supporter",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-standing-with-crossed-arms-patterned-blouse-looking-cheery-front-view-space-text_176474-31897.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-standing-with-crossed-arms-patterned-blouse-looking-cheery-front-view-space-text_176474-31897.jpg?_wi=2",
imageAlt: "community member elder portrait warm",
},
{
@@ -172,7 +172,7 @@ export default function OrchestraPage() {
quote: "The orchestra performances are exceptional. The energy, passion, and skill of our musicians create unforgettable musical experiences.",
name: "James Wilson",
role: "Concert Attendee & Donor",
imageSrc: "http://img.b2bpic.net/free-photo/expressive-man-posing-outdoor_344912-3107.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/expressive-man-posing-outdoor_344912-3107.jpg?_wi=3",
imageAlt: "music lover concert attendee portrait photo",
},
]}

View File

@@ -115,17 +115,17 @@ export default function HomePage() {
},
{
id: "carousel-3",
imageSrc: "http://img.b2bpic.net/free-photo/band-mates-performing-together_107420-96135.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/band-mates-performing-together_107420-96135.jpg?_wi=1",
imageAlt: "String ensemble performing concert hall stage",
},
{
id: "carousel-4",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-holding-guitars_23-2149223608.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-people-holding-guitars_23-2149223608.jpg?_wi=1",
imageAlt: "Community gathering music celebration event",
},
{
id: "carousel-5",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-musicians-working-studio_23-2150265049.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-musicians-working-studio_23-2150265049.jpg?_wi=1",
imageAlt: "Musicians rehearsing studio practice session",
},
{
@@ -170,10 +170,10 @@ export default function HomePage() {
title: "Private Violin Lessons",
description: "One-on-one instruction tailored to your level and learning pace. All ages welcome.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/lovely-couple-spending-quality-time-together_53876-14411.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/lovely-couple-spending-quality-time-together_53876-14411.jpg?_wi=1",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/learning-play-new-song-piano-artistic-young-boy-talking-with-his-music-teacher-private-lesson_662251-1522.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/learning-play-new-song-piano-artistic-young-boy-talking-with-his-music-teacher-private-lesson_662251-1522.jpg?_wi=1",
},
},
{
@@ -181,10 +181,10 @@ export default function HomePage() {
title: "Group String Classes",
description: "Learn with peers in a supportive, collaborative environment. Build ensemble skills and lasting friendships.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/young-student-learning-how-hold-guitar_23-2148511106.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-student-learning-how-hold-guitar_23-2148511106.jpg?_wi=1",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/guitar-teacher-overseeing-woman-learning-how-play_23-2148524651.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/guitar-teacher-overseeing-woman-learning-how-play_23-2148524651.jpg?_wi=1",
},
},
{
@@ -192,10 +192,10 @@ export default function HomePage() {
title: "Adult Beginner Programs",
description: "Never too late to learn. Flexible scheduling for adults returning to music or starting fresh.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-making-music_23-2150466018.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-friends-making-music_23-2150466018.jpg?_wi=1",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/guy-with-violon_1157-8509.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/guy-with-violon_1157-8509.jpg?_wi=1",
},
},
]}
@@ -222,10 +222,10 @@ export default function HomePage() {
title: "Weekly Rehearsals",
description: "Gather with fellow musicians for collaborative rehearsals. Build skills and create beautiful music together.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/women-playing-various-instrument_107420-64960.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/women-playing-various-instrument_107420-64960.jpg?_wi=1",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/happy-people-making-jazz-music-uk_23-2149357030.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/happy-people-making-jazz-music-uk_23-2149357030.jpg?_wi=1",
},
},
{
@@ -233,10 +233,10 @@ export default function HomePage() {
title: "Performance Opportunities",
description: "Perform at community events, concerts, and celebrations throughout the season. Share your talent with neighbors and friends.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/guitar-piano-keys-closeup-blurred-background-with-bokeh_169016-42654.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/guitar-piano-keys-closeup-blurred-background-with-bokeh_169016-42654.jpg?_wi=1",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/girl-with-smartphone-cocktail-nature-deck-chair-summer-day-off_1321-3731.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/girl-with-smartphone-cocktail-nature-deck-chair-summer-day-off_1321-3731.jpg?_wi=1",
},
},
{
@@ -244,10 +244,10 @@ export default function HomePage() {
title: "Community Connection",
description: "Be part of a supportive, inspiring community dedicated to the arts. Friendships, mentorship, and shared creative joy.",
phoneOne: {
imageSrc: "http://img.b2bpic.net/free-photo/family-enjoying-stop-their-road-trip_23-2149401852.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/family-enjoying-stop-their-road-trip_23-2149401852.jpg?_wi=1",
},
phoneTwo: {
imageSrc: "http://img.b2bpic.net/free-photo/people-celebrating-jazz-day-event_23-2148876990.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-celebrating-jazz-day-event_23-2148876990.jpg?_wi=1",
},
},
]}
@@ -272,7 +272,7 @@ export default function HomePage() {
category: "Concert",
title: "Mozart Requiem",
excerpt: "A powerful and moving performance of Mozart's Requiem. Presented at the historic Stockey Centre with special guest soloists.",
imageSrc: "http://img.b2bpic.net/free-photo/people-celebrating-jazz-day-event-together_23-2148877003.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/people-celebrating-jazz-day-event-together_23-2148877003.jpg?_wi=1",
imageAlt: "Mozart Requiem concert poster",
authorName: "Whispering River Music",
authorAvatar: "http://img.b2bpic.net/free-vector/modern-museum-logo-template_742173-17607.jpg",
@@ -283,7 +283,7 @@ export default function HomePage() {
category: "Concert",
title: "Spring Community Orchestra Concert",
excerpt: "Our community orchestra performs a diverse program featuring works from classical masters and contemporary composers.",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-romantic-girls-park-with-violin_1157-23784.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-romantic-girls-park-with-violin_1157-23784.jpg?_wi=1",
imageAlt: "Spring concert performance",
authorName: "Whispering River Music",
authorAvatar: "http://img.b2bpic.net/free-vector/modern-museum-logo-template_742173-17607.jpg",
@@ -294,7 +294,7 @@ export default function HomePage() {
category: "Workshop",
title: "Beginner Violin Workshop",
excerpt: "Join us for an interactive workshop perfect for anyone curious about learning violin. No experience necessary!",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-playing-violin_23-2148485111.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/close-up-woman-playing-violin_23-2148485111.jpg?_wi=1",
imageAlt: "Beginner violin workshop",
authorName: "Whispering River Music",
authorAvatar: "http://img.b2bpic.net/free-vector/modern-museum-logo-template_742173-17607.jpg",
@@ -305,7 +305,7 @@ export default function HomePage() {
category: "Community Event",
title: "Music in the Park - Summer Series",
excerpt: "Free outdoor concerts celebrating music in nature. Bring a blanket, bring your friends, and enjoy live performances.",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-playing-guitar_23-2149409394.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-woman-playing-guitar_23-2149409394.jpg?_wi=1",
imageAlt: "Outdoor summer concert in park",
authorName: "Whispering River Music",
authorAvatar: "http://img.b2bpic.net/free-vector/modern-museum-logo-template_742173-17607.jpg",
@@ -366,7 +366,7 @@ export default function HomePage() {
quote: "Learning violin with Whispering River Music has been one of the best decisions of my life. The instructors are patient, knowledgeable, and truly passionate about music.",
name: "Sarah Johnson",
role: "Student, Adult Beginner Class",
imageSrc: "http://img.b2bpic.net/free-photo/woman-celebrating-jazz-day-event_23-2148876984.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/woman-celebrating-jazz-day-event_23-2148876984.jpg?_wi=1",
},
{
id: "testimonial-2",
@@ -374,7 +374,7 @@ export default function HomePage() {
quote: "After 20 years away from music, I found my way back through the community orchestra. Everyone is so supportive and encouraging.",
name: "Michael Chen",
role: "Community Orchestra Member",
imageSrc: "http://img.b2bpic.net/free-photo/young-musician-holding-guitar-sitting-sofa-high-quality-photo_114579-35634.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-musician-holding-guitar-sitting-sofa-high-quality-photo_114579-35634.jpg?_wi=1",
},
{
id: "testimonial-3",
@@ -382,7 +382,7 @@ export default function HomePage() {
quote: "My daughter has thrived under the guidance of the instructors at Whispering River Music. They bring out the best in every student.",
name: "Emily Rodriguez",
role: "Parent, Youth Violin Student",
imageSrc: "http://img.b2bpic.net/free-photo/mother-son-posing-smiling_23-2148414883.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/mother-son-posing-smiling_23-2148414883.jpg?_wi=1",
},
{
id: "testimonial-4",
@@ -398,7 +398,7 @@ export default function HomePage() {
quote: "The leadership team's commitment to making music accessible to everyone is truly inspiring. This organization embodies the spirit of community.",
name: "James Wilson",
role: "Concert Attendee",
imageSrc: "http://img.b2bpic.net/free-photo/expressive-man-posing-outdoor_344912-3107.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/expressive-man-posing-outdoor_344912-3107.jpg?_wi=1",
},
{
id: "testimonial-6",
@@ -406,7 +406,7 @@ export default function HomePage() {
quote: "Whispering River Music brings people together and enriches our cultural landscape. I'm grateful for everything they do.",
name: "Patricia Thompson",
role: "Community Member",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-standing-with-crossed-arms-patterned-blouse-looking-cheery-front-view-space-text_176474-31897.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-standing-with-crossed-arms-patterned-blouse-looking-cheery-front-view-space-text_176474-31897.jpg?_wi=1",
},
]}
/>