mirror of
https://codeberg.org/JasterV/spazio-solazzo.git
synced 2026-04-26 18:20:03 +00:00
* feat: add new images * update seeds * use new images & slugs * update tests with new slugs
51 lines
1.7 KiB
Text
51 lines
1.7 KiB
Text
<Layouts.app flash={@flash} current_user={@current_user}>
|
|
<.page_header
|
|
booking_path={~p"/book/space/#{@space.slug}"}
|
|
booking_label="Book Space"
|
|
price="€25"
|
|
price_unit="day"
|
|
capacity={@space.capacity}
|
|
images={[
|
|
~p"/images/coworking_room/01.jpg",
|
|
~p"/images/coworking_room/02.jpg",
|
|
~p"/images/coworking_room/03.jpg",
|
|
~p"/images/coworking_room/04.jpg"
|
|
]}
|
|
>
|
|
<:title>{@space.name}</:title>
|
|
<:description>
|
|
Join a vibrant community of innovators in the heart of Palermo. A flexible, open-plan sanctuary designed for focus and connection.
|
|
</:description>
|
|
</.page_header>
|
|
|
|
<.features_section
|
|
title="Everything for the modern nomad"
|
|
description="We've curated the perfect environment for productivity, ensuring you have the tools to thrive in Sicily."
|
|
>
|
|
<:feature
|
|
icon="hero-wifi"
|
|
title="Fiber Internet"
|
|
description="Dedicated 1Gbps symmetrical fiber line ensuring you never drop a call or buffer a video."
|
|
color="emerald"
|
|
>
|
|
</:feature>
|
|
<:feature
|
|
icon="hero-home"
|
|
title="Ergonomic Comfort"
|
|
description="Herman Miller chairs and spacious desks designed to keep you comfortable all day."
|
|
color="indigo"
|
|
/>
|
|
<:feature
|
|
icon="hero-cake"
|
|
title="Community Kitchen"
|
|
description="Unlimited freshly brewed Sicilian coffee, herbal teas, and a space to share meals."
|
|
color="purple"
|
|
/>
|
|
</.features_section>
|
|
|
|
<.house_rules title="Coworking House Rules">
|
|
<:rule>Please keep phone calls to the dedicated booths.</:rule>
|
|
<:rule>Clean your desk area before leaving.</:rule>
|
|
<:rule>Be respectful of quiet zones.</:rule>
|
|
</.house_rules>
|
|
</Layouts.app>
|