<ui-faq>
What services does Tekki offer?
We provide custom web development, cloud solutions, and technical consulting tailored to your business needs.
How can I get in touch with your team?
You can reach us via our contact page, or send us an email at hello@eldoeytech.no.
Where are you located?
Our office is based in Oslo, Norway, but we work with clients across the globe.
<template is="ui-faq" items="array">
<div class="ui-faq">
<div class="ui-faq-content">
<div
if="Array.isArray(props.items) && props.items.length"
map="item of props.items"
class="ui-faq-item"
>
<div
if="item.question"
class="ui-faq-question"
onclick="this.parentNode.classList.toggle('open')"
>
<span class="ui-faq-question-text"
>{{item.question ?? '' |> esc}}</span
>
<span class="ui-faq-question-toggler">
<img
src="/ui/img/chevron.svg"
height="20"
width="20"
alt="toggle"
/>
</span>
</div>
<div if="item.answer" class="ui-faq-answer">
<span class="ui-faq-answer-text">{{item.answer ?? ''}}</span>
</div>
</div>
</div>
</div>
</template>