spazio-solazzo/lib/spazio_solazzo_web/live/landing/music_live.html.heex
Víctor Martínez 69f992f8f6
feat: new booking system + admin dashboard (#12)
feat: implement a new booking system and admin dashboard
2026-02-07 19:08:39 +01:00

49 lines
2.5 KiB
Text

<Layouts.app flash={@flash} current_user={@current_user}>
<.page_header
booking_path={~p"/book/space/#{@space.slug}"}
booking_label="Book Space"
price="€50"
price_unit="hour"
capacity={@space.capacity}
images={[
"https://lh3.googleusercontent.com/aida-public/AB6AXuD1wkxK48dk7i5XYX6JL-O1egrsdLjcmOg7N4EB76QtUvhzR7lZQadprIT9rLPsroUjazftFRpp_z26wb8lHaUW9XyucGlKG3qG40oT5iaKWwqVI1drNKJDJgVBkmNjw4u_D5vig_C1pf6bgGZnPaOV2tnnmlexxHJIDQYZzfg1GGwgywBvpGLz_u2_jvkbyMo3_m5roM09PjonFEfGIHxjm0vClW1DAOX45IrT87A85OdAXEu2EPyB8oW9WzmolOn4DFj22vKWSbVD",
"https://lh3.googleusercontent.com/aida-public/AB6AXuB3fJu4mgZaw8GP1OC2SjquJZJmnRlY_OHD4fO4AAd_KHd5BYnW1i0egrskoEfK_uCdK4pQu5kMf8pF9h_KXE0wYQAROnTBTJ4YmBpHui9nv8wz44VENo2p-lA3rW8xhQhiYzlAhHJlhgOdZluVp9eYvsZxGM76QkDXMcBQz1Ka5ZfRMNgddo1RS76IPaxbQIvpOh_55uW87bAiGAvhcE8GrIi2ugpiJ64Rdou1uZLD1bPWxUvyLtpTFFLr2vfVjq7OpVYiGnLaGstS",
"https://lh3.googleusercontent.com/aida-public/AB6AXuBVY6j_kvSUC0trHVnwvszpxZa58CpY0sGTF6m6lPQJkFlN-GnK1ofNaSn8PU1JnmPPAl7B196LoYq4SfawlDFrg2ADKKr65cOE0jq2L9w-cXrkPxE4poylrIeKX8zP1JsIS5obvU5_HAG074RjeYSWFsV5Z7wQF0ktZlYL6m462hsl-xdLQWQiBLZOHNsBf6jrZieUst9dKUlec6hzWOqcbIXuugBJW5fklJmMti9CDQynn1XZ5I5gZYEL47tW2Ku9u_zEEpfqmEKF"
]}
>
<:title>{@space.name}</:title>
<:description>
A professionally designed music rehearsal and recording space in the heart of Palermo. Perfect for bands, solo artists, and content creators.
</:description>
</.page_header>
<.features_section
title="Professional Audio Environment"
description="State-of-the-art equipment and acoustically treated space for your creative sessions."
>
<:feature
icon="hero-speaker-wave"
title="Premium Sound System"
description="High-end monitors, professional mixing console, and complete PA system ready to use."
color="violet"
/>
<:feature
icon="hero-microphone"
title="Recording Ready"
description="Multi-track recording capability with professional condenser microphones and interfaces."
color="pink"
/>
<:feature
icon="hero-musical-note"
title="Full Backline"
description="Drum kit, bass and guitar amplifiers, keyboards - everything you need to play."
color="orange"
/>
</.features_section>
<.house_rules title="Music Studio Guidelines">
<:rule>Respect noise level limits and time slots.</:rule>
<:rule>Handle equipment with care and return items to their places.</:rule>
<:rule>Clean up after your session.</:rule>
</.house_rules>
</Layouts.app>