Update src/app/page.tsx

This commit is contained in:
2026-03-04 21:07:59 +00:00
parent d34d5a51df
commit 085cd32e2a

View File

@@ -71,7 +71,7 @@ export default function LandingPage() {
<div id="booking" data-section="booking">
<MetricCardTen
title="Book Your Recording Session"
description="Reserve your preferred date and time. A $50 deposit secures your booking. Available slots shown below with full session details."
description="Reserve your preferred date and time. A $50 deposit secures your booking (or $50 for the first hour). Additional hours are $40 each. Available slots shown below with full session details."
tag="Booking"
tagIcon={Calendar}
textboxLayout="default"
@@ -104,23 +104,26 @@ export default function LandingPage() {
<div id="pricing" data-section="pricing">
<PricingCardFive
title="Recording Session Packages"
description="Choose the perfect package for your recording needs. All sessions include professional engineering and mixing consultation."
description="Choose the perfect package for your recording needs. All sessions include professional engineering and mixing consultation. First hour deposit is $50, additional hours are $40 each."
tag="Pricing"
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={false}
plans={[
{
id: "basic", tag: "Basic Session", price: "$150", period: "/hour", description: "Perfect for voiceovers and solo recordings. Includes engineer and basic editing.", button: { text: "Book Session", href: "#booking" }, featuresTitle: "What's Included:", features: [
"1 hour studio time", "Professional engineer", "Basic editing", "File delivery"],
id: "basic", tag: "Basic Session", price: "$50", period: "first hour + $40/hr", description: "Perfect for voiceovers and solo recordings. Includes engineer and basic editing.", button: { text: "Book Session", href: "#booking" },
featuresTitle: "What's Included:", features: [
"First hour: $50 deposit", "Additional hours: $40 each", "Professional engineer", "Basic editing", "File delivery"],
},
{
id: "pro", tag: "Pro Session", price: "$250", period: "/hour", description: "Ideal for bands and complex productions. Full mixing included.", button: { text: "Book Session", href: "#booking" }, featuresTitle: "What's Included:", features: [
"1 hour studio time", "Professional engineer", "Full mixing", "Multiple instrument setup", "High-quality file delivery"],
id: "pro", tag: "Pro Session", price: "$50", period: "first hour + $40/hr", description: "Ideal for bands and complex productions. Full mixing included.", button: { text: "Book Session", href: "#booking" },
featuresTitle: "What's Included:", features: [
"First hour: $50 deposit", "Additional hours: $40 each", "Professional engineer", "Full mixing", "Multiple instrument setup", "High-quality file delivery"],
},
{
id: "premium", tag: "Premium Package", price: "$1,200", period: "/day", description: "Full-day recording with mastering services. Maximum flexibility and quality.", button: { text: "Book Session", href: "#booking" }, featuresTitle: "What's Included:", features: [
"8-hour studio access", "Experienced engineer", "Full mixing and mastering", "Multiple room access", "Equipment consultation", "Professional master files"],
id: "premium", tag: "Premium Package", price: "$400", period: "/day (8 hours)", description: "Full-day recording with mastering services. Maximum flexibility and quality.", button: { text: "Book Session", href: "#booking" },
featuresTitle: "What's Included:", features: [
"8-hour studio access: $50 first hour + $40 x 7 = $330 (or $400 flat rate)", "Experienced engineer", "Full mixing and mastering", "Multiple room access", "Equipment consultation", "Professional master files"],
},
]}
/>
@@ -151,20 +154,20 @@ export default function LandingPage() {
<ContactFaq
faqs={[
{
id: "1", title: "How do I book a session?", content: "Browse our available time slots above, select your preferred date and time, and follow the booking process. A $50 deposit is required to confirm your reservation. Contact us if you need assistance."},
id: "1", title: "How do I book a session?", content: "Browse our available time slots above, select your preferred date and time, and follow the booking process. A $50 deposit is required to secure your reservation. Contact us if you need assistance."},
{
id: "2", title: "Can I edit available booking times?", content: "Yes! Studio administrators can log into the backend dashboard to add, remove, or modify available booking slots based on studio schedules and maintenance needs."},
{
id: "3", title: "What is the deposit policy?", content: "A $50 deposit is required to secure your booking. This deposit is applied toward your final session cost and is refundable with 48 hours notice."},
id: "3", title: "What is the deposit policy?", content: "A $50 deposit is required to secure your booking and covers the first hour of your session. Additional hours beyond the first are $40 each. This deposit is applied toward your final session cost and is refundable with 48 hours notice."},
{
id: "4", title: "Do you offer package deals?", content: "Yes! We offer Basic, Pro, and Premium packages with different pricing and features. Multi-session bookings may qualify for discounted rates. Contact us for custom pricing."},
id: "4", title: "Do you offer package deals?", content: "Yes! We offer Basic, Pro, and Premium packages with different pricing and features. A full 8-hour day is typically $400 (representing $50 for the first hour plus $40 for each of 7 additional hours). Multi-session bookings may qualify for discounted rates. Contact us for custom pricing."},
{
id: "5", title: "What equipment do you have?", content: "We feature professional-grade microphones, mixing consoles, outboard gear, and acoustic treatments. Our two studios accommodate different project sizes and requirements."},
{
id: "6", title: "Can I reschedule my booking?", content: "Absolutely. Contact us at least 48 hours before your session to reschedule. Subject to availability, we'll find you a new time slot with no additional charges."},
]}
ctaTitle="Get in Touch"
ctaDescription="Ready to book your session? Contact us to reserve your time slot and discuss your project requirements."
ctaDescription="Ready to book your session? Contact us to reserve your time slot and discuss your project requirements. Rates: $50 deposit for first hour, $40 for each additional hour."
ctaButton={{ text: "Contact Us", href: "mailto:hello@sbstudio.com" }}
ctaIcon={Phone}
useInvertedBackground={false}