-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: company main page #437
base: main
Are you sure you want to change the base?
Conversation
9842c12
to
85773cf
Compare
<a href={"/attendees/#{@id}"}> | ||
<div class="py-4 px-4"> | ||
<img class="w-16 h-16 m-auto" src={@image} /> | ||
<h1 class="font-terminal uppercase text-xl"> | ||
<%= @name %> | ||
</h1> | ||
</div> | ||
</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<a href={"/attendees/#{@id}"}> | |
<div class="py-4 px-4"> | |
<img class="w-16 h-16 m-auto" src={@image} /> | |
<h1 class="font-terminal uppercase text-xl"> | |
<%= @name %> | |
</h1> | |
</div> | |
</a> | |
<.link href={"/attendees/#{@id}"}> | |
<div class="py-4 px-4"> | |
<img class="w-16 h-16 m-auto" src={@image} /> | |
<h1 class="font-terminal uppercase text-xl"> | |
<%= @name %> | |
</h1> | |
</div> | |
</.link> |
> | ||
<.attendee | ||
:for={{id, attendee} <- @streams.visitors} | ||
id={attendee.id} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
id={attendee.id} | |
id={id} |
<div class="relative h-screen flex overflow-hidden"> | ||
<.sidebar | ||
current_user={@current_user} | ||
pages={SafiraWeb.Config.sponsor_pages()} | ||
current_page={Map.get(assigns, :current_page, nil)} | ||
background="bg-primaryDark" | ||
border="border-darkShade" | ||
logo_padding="px-16 pt-8 pb-4" | ||
logo_images={%{light: "/images/sei.svg", dark: "/images/sei.svg"}} | ||
logo_url={~p"/app/"} | ||
user_dropdown_name_color="text-light" | ||
user_dropdown_handle_color="text-lightMuted" | ||
user_dropdown_icon_color="text-lightShade" | ||
link_class="px-3 group flex items-center py-2 text-sm font-medium rounded-md transition-colors" | ||
link_active_class="bg-light text-primaryDark" | ||
link_inactive_class="hover:bg-primary-500/10 text-light" | ||
/> | ||
<div class="flex flex-col flex-1 overflow-hidden"> | ||
<div class="bg-primaryDark flex justify-end lg:hidden px-4 sm:px-6 py-2"> | ||
<button | ||
class="sidebar-toggle flex items-center justify-center w-16 dark:text-light text-dark" | ||
aria-expanded="false" | ||
phx-click={show_mobile_sidebar()} | ||
> | ||
<.icon class="w-8 h-8" name="hero-bars-3" /> | ||
</button> | ||
</div> | ||
<main class="text-light bg-primaryDark flex-1 relative z-0 overflow-y-auto focus:outline-none"> | ||
<div class="px-4 sm:px-6 lg:px-8 py-8"> | ||
<.flash_group flash={@flash} /> | ||
<%= @inner_content %> | ||
</div> | ||
</main> | ||
</div> | ||
</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you change this to look the same as the backoffice UI ? Black & White?
Just keep the event logo.
No description provided.