add contact info

This commit is contained in:
Dylan Knutson
2023-08-21 11:39:57 -07:00
parent fc48506a68
commit d21bacb9a3
3 changed files with 8 additions and 10 deletions

View File

@@ -56,12 +56,7 @@ export default function ListItem({
}
return (
<a
className={`relative block`}
onClick={onClick}
href={href}
target="_blank"
>
<a className={`relative block`} onClick={onClick} href={href}>
{style == "error" ? (
<Icon type="exclamation-circle" className={iconClassName.join(" ")} />
) : null}

View File

@@ -258,10 +258,6 @@ export default function UserSearchBar({ isServerRendered }: PropTypes) {
value={name}
thumb={thumb}
href={show_path}
onClick={(event) => {
event.preventDefault();
invokeIdx(idx);
}}
/>
))
: null}

View File

@@ -3,4 +3,11 @@
<% end %>
<div class='w-full mt-2 sm:mt-6'>
<%= react_component("UserSearchBar", props: {}, prerender: true) %>
<div class="mt-2 mx-auto w-full p-2 sm:p-2 sm:border-2 sm:border-slate-100 sm:max-w-md rounded-xl">
<div class='text-slate-400 italic'>Questions? Comments? Suggestions?</div>
<div class='text-slate-400 italic' >Contact @DeltaNoises -
<%= link_to "Telegram", "https://t.me/DeltaNoises", target: "_blank", class: "underline decoration-dashed" %> -
<%= link_to "BlueSky", "https://bsky.app/profile/delta.refurrer.com", target: "_blank", class: "underline decoration-dashed" %>
</div>
</div>
</div>