package templates import "technical.kiwi/website/internal/gallery" templ Home(images []gallery.Image, hero gallery.Image, hasHero bool, contactEnabled bool) { @Layout("Technical Kiwi Limited", heroPreload(hero, hasHero), homeContent(images, hero, hasHero, contactEnabled)) } func heroPreload(hero gallery.Image, hasHero bool) string { if !hasHero { return "" } return hero.HeroURL } templ homeContent(images []gallery.Image, hero gallery.Image, hasHero bool, contactEnabled bool) {

Technical Kiwi Limited

Electronic engineering and interactive art

We design and build lighting installations, embedded systems, and interactive experiences — from workshop bench to stage.

if hasHero && hero.HeroURL != "" {
Technical Kiwi — Connection machine
}

What we do

Electronic engineering

Custom LED systems, control electronics, PCB design, and fabrication for installations and products.

Interactive art

Lighting, sound-reactive visuals, and experiential tech for events, venues, and public spaces.

@ContactForm(contactEnabled) }