Overhaul the job fair section. Add Kagi!

main
Abner Coimbre 2025-04-03 03:44:56 -07:00
parent 0613b46308
commit 40e1078fca
4 changed files with 29 additions and 14 deletions

View File

@ -99,31 +99,34 @@ features:
image: ""
section_class: "pb-24"
side: "center"
content: "<span class='block mx-auto mt-24 text-black dark:text-white w-1/2'>**Hiring Handmade people.** These brands have attended our job fairs. Companies may rent a job booth but cannot influence nor sponsor the event.</span>"
content: "<span class='block mx-auto mt-24 text-black dark:text-white w-1/2'>These brands have attended our job fair. Employers may rent booths but cannot influence nor sponsor the conference.</span>"
content_class: "mt-12"
img_grid:
imgs:
- name: "JangaFX"
img: "/images/companies/jangafx.png"
link: "https://jangafx.com/"
- name: "Pontoco"
img: "/images/companies/pontoco.png"
link: "https://pontoco.com/"
- name: "Kagi"
img: "/images/companies/kagi_doggo.png"
link: "https://kagi.com/"
- name: "Mozilla"
img: "/images/companies/mozilla.png"
link: "https://www.mozilla.org/en-US/"
- name: "TestFit"
img: "/images/companies/tf.png"
link: "https://www.testfit.io/"
- name: "Magic Poser"
img: "/images/companies/magic_poser.png"
link: "https://magicposer.com/"
- name: "JangaFX"
img: "/images/companies/jangafx.png"
link: "https://jangafx.com/"
- name: "System Era"
img: "/images/companies/systemera.png"
link: "https://systemera.net/"
- name: "TestFit"
img: "/images/companies/tf.png"
link: "https://www.testfit.io/"
- name: "KCSE"
img: "/images/companies/kcse.png"
link: "https://www.kcse.com/"
- name: "Pontoco"
img: "/images/companies/pontoco.png"
link: "https://pontoco.com/"
- name: "Magic Poser"
img: "/images/companies/magic_poser.png"
link: "https://magicposer.com/"
button:
enable: false

View File

@ -87,7 +87,7 @@
<!-- testimonials -->
<!-- img_grid -->
{{ if .img_grid }}
{{ partial "components/img_grid.html" . }}
{{ partial "components/improved-img-grid.html" .img_grid }}
{{ end }}
<!-- /img_grid -->
<!-- card_grid -->

View File

@ -0,0 +1,12 @@
<div class="company-grid grid grid-cols-2 md:grid-cols-3 lg:grid-cols-4 gap-8 my-12">
{{ range .imgs }}
<a href="{{ .link }}" target="_blank" rel="noopener noreferrer" class="company-item flex items-center justify-center p-4 bg-white dark:bg-gray-800 rounded-lg transition-transform hover:scale-105">
<img
src="{{ .img }}"
alt="{{ .name }}"
class="max-h-16 w-auto object-contain"
loading="lazy"
/>
</a>
{{ end }}
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB