Skip to content
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

Add links #9

Merged
merged 1 commit into from
Aug 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions src/views/index.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,13 @@
<div class='max-w-md'>
<h1 class='text-5xl font-bold'>{{title}}</h1>
<p class='py-6'>{{description}}</p>
<button class='btn btn-primary'>Get Started</button>
<a
class='btn btn-primary'
href='https://github.com/apl9000/nest-kitchen-sink'
target='_blank'
>
Get Started
</a>
</div>
</div>
</div>
Expand All @@ -19,7 +25,7 @@
class='grow'
name='q'
hx-post='/search'
hx-trigger='keyup changed delay:500ms, search'
hx-trigger='keyup changed delay:100ms, search'
hx-target='#search-results'
hx-swap=''
hx-indicator='.htmx-indicator'
Expand All @@ -36,7 +42,7 @@
clip-rule='evenodd'
/></svg>
</label>
<div class='mt-8 flex'>
<div class='mt-8 flex pb-24'>
<div hx-post='/search' hx-trigger='load'></div>
<div id='result'></div>
</div>
Expand Down
1 change: 0 additions & 1 deletion src/views/layout.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<html>
<head>
<title>{{title}}</title>

<link href="public/styles.css" rel="stylesheet" />
<link
rel='stylesheet'
Expand Down
46 changes: 25 additions & 21 deletions src/views/partials/footer.hbs
Original file line number Diff line number Diff line change
@@ -1,31 +1,35 @@
<footer class='footer p-10 bg-neutral text-neutral-content'>
<footer class='footer p-24 bg-neutral text-neutral-content'>
<aside>
<div class='flex'>

</div>
<h6 class='footer-title'>{{title}}</h6>
<p>{{description}}</p>
</aside>
<nav>
<h6 class='footer-title'>Built With</h6>
<div class='grid grid-flow-col gap-4'>
<img
src='https://github.com/marwin1991/profile-technology-icons/assets/136815194/519bfaf3-c242-431e-a269-876979f05574'
class='w-12 h-12 rounded-full'
/>
<img
src='https://alchemists.io/images/projects/htmx/icon.png'
class='w-12 h-12 rounded-full'
/>
<img
src='https://logodix.com/logo/1878536.jpg'
class='w-12 h-12 rounded-full'
/>
<img
src='https://user-images.githubusercontent.com/25181517/202896760-337261ed-ee92-4979-84c4-d4b829c7355d.png'
class='w-12 h-12 rounded-full'
/>

<a href='https://nestjs.com/' target='_blank'>
<img
src='https://github.com/marwin1991/profile-technology-icons/assets/136815194/519bfaf3-c242-431e-a269-876979f05574'
class='w-12 h-12 rounded-full'
/>
</a>
<a href='https://htmx.org/' target='_blank'>
<img
src='https://miro.medium.com/v2/resize:fit:640/format:webp/1*K9DsxvRlx5CWa2SRbDGZmA.png'
class='w-12 h-12'
/>
</a>
<a href="https://handlebarsjs.com/" target="_blank">
<img
src='https://logodix.com/logo/1878536.jpg'
class='w-12 h-12 rounded-full'
/>
</a>
<a href="https://tailwindcss.com/" target="_blank">
<img
src='https://user-images.githubusercontent.com/25181517/202896760-337261ed-ee92-4979-84c4-d4b829c7355d.png'
class='w-12 h-12 rounded-full'
/>
</a>
</div>
</nav>
</footer>
9 changes: 0 additions & 9 deletions src/views/search_result.hbs

This file was deleted.