about
Thin
cards
ChecksCompareImageMinimalplainSteps
contact
Address
core
Consent
footer
Slim
hero
Bigcentral
lists
Panel
nav
Slimslim Desktopslim MobileSpringSpring DesktopSpring Mobile
sections
Problem SolutionSimple
text
largeParagraph

Theme Customizer

v1.0

Spring nav

Combines a desktop top bar with a slide-in mobile sidebar that shares links and branding. Mobile includes subtitle and contact details; a unified toggle keeps both views in sync.

navnavigationspringcomposite
Required libraries / modules showhide
  • @nuxt/icon

Get the code!

License Summary

You may use these UI components in your own personal or commercial projects. You may not resell, redistribute, sublicense, or package them as standalone assets or template/library packs.

Full terms: End-User License Agreement

Below you can expand the main implementation file and any supporting components. Use the “Copy” button to grab a snippet straight to your clipboard.

1 Copy raw components

These are the raw components that are required to run this example. Copy-paste them into your project. Most likely you will not change anything in these files, but you can if you want to. These are the components that are used in the main implementation file.

springDesktop.vue
<script setup>
const props = defineProps({
  title: String,
  subtitle: String,
  links: {
    type: Array,
    validate: (value) => {
      return value.every((link) => link.name && link.path);
    },
  },
  adress: String,
  phone: String,
  email: String,
});

const emit = defineEmits(["toggleMobileMenu"]);
</script>

<template>
  <nav
    class="bg-iq-primary sticky top-0 z-50 font-iq-paragraph leading-iq-paragraph tracking-iq-paragraph text-iq-paragraph-color"
    aria-label="Główna nawigacja strony"
  >
    <div class="flex justify-between items-center p-4 md:p-0 shadow md:shadow-none">
      <slot name="logo">
        <NuxtLink
          to="/"
          class="text-3xl font-extrabold text-iq-secondary-color  md:min-w-96 uppercase md:text-center h-full"
          >{{ title }}</NuxtLink
        >
      </slot>

      <!-- Hamburger -->
      <div class="flex md:hidden">
        <button
          @click="emit('toggleMobileMenu')"
          aria-label="Toggle navigation menu"
          aria-controls="mobile-menu"
          aria-haspopup="true"
          class="text-2xl"
        >
          <slot name="hamburger">
            <Icon name="material-symbols:menu" />
          </slot>
        </button>
      </div>

      <!-- Desktop -->
      <div
        class="hidden md:flex bg-iq-secondary flex-1 justify-around text-2xl transition h-full"
      >
        <slot name="desktopLinks">
          <NuxtLink
            v-for="link in links"
            :key="link.path"
            activeClass="text-center !text-black !bg-white w-full p-4 "
            :to="link.path"
            class="text-center text-iq-paragraph-secondary-color w-full hover:text-black p-4 hover:bg-white duration-700 transition h-full"
          >
            {{ link.name }}
          </NuxtLink>
        </slot>
      </div>
    </div>

  </nav>
</template>

springMobile.vue
<script setup>
const props = defineProps({
    title: String,
    subtitle: String,
    links: {
        type: Array,
        validate: (value) => {
            return value.every(link => link.name && link.path);
        }
    },
    adress: String,
    phone: String,
    email: String,
    mobileAdditionalHomePage: String,
    isOpen: {
        type: Boolean,
        default: false,
    },
});


</script>
<template>


    <!-- Mobile menu -->
    <div class="md:hidden fixed top-0 left-0 h-screen w-64 pl-[40px] flex flex-col  shadow py-4 pr-4 bg-iq-primary  rounded-r-iq-roundness z-50 transition-transform text-iq-paragraph-color"
        :class="isOpen ? 'animate-slide-in-bounce' : '-translate-x-full'" id="mobile-menu">
        <!-- Div with company name, wiktorias name  and what is it -->
        <div class="flex flex-col items-center justify-center text-iq-header-secondary-color">
            <div v-if="title || subtitle" class="flex flex-col px-4 py-4 bg-iq-secondary rounded-r-iq-roundness shadow">
                <slot name="logo">
                    <h1
                        class="text-2xl font-black uppercase font-iq-header leading-iq-header tracking-iq-header ">
                        {{ title }}
                    </h1>
                </slot>

                <slot name="subtitle">
                    <h2 class="text-xs  mt-2 ">
                        {{ subtitle }}
                    </h2>
                </slot>
            </div>
        </div>

        <!-- Links -->

        <div class="mt-4" >
            <NuxtLink v-if="mobileAdditionalHomePage" to="/" @click="isOpen = false"
                class="px-4 py-2  flex items-center transition justify-start overflow-hidden rounded-r-iq-roundness  duration-700 focus:bg-white focus:text-iq-primary"
                activeClass="   rounded-r-iq-roundness shadow bg-white text-iq-primary">
                {{ mobileAdditionalHomePage }}
            </NuxtLink>

            <slot name="mobileLinks">
                <NuxtLink v-for="link in links" :key="link.path" :to="link.path" @click="isOpen = false"
                    class="px-4 py-2  flex items-center transition justify-start overflow-hidden rounded-r-iq-roundness  duration-700 focus:bg-white focus:text-iq-primary"
                    activeClass="   rounded-r-iq-roundness shadow  bg-white text-iq-primary">
                    {{ link.name }}
                </NuxtLink>
            </slot>
        </div>
        <!-- Basic contact info, phone number, adress -->

        <address class="text-sm  font-bold rounded-tr-iq-roundness pl-4 not-italic flex flex-col gap-2 mt-auto">
            <slot name="adress">
                <p class="flex flex-row items-start gap-2 justify-between mt-2 text-xs" v-if="adress">

                    {{ adress }}
                    <Icon class="text-xl" name="material-symbols:location-on"   />
                </p>
            </slot>

            <slot name="phone">
                <p class="flex flex-row items-start gap-2 justify-between mt-2 text-xs" v-if="phone">
                    <a :href="'tel:' + phone">{{ phone }}</a>
                    <Icon class="text-xl" name="material-symbols:call-outline-rounded"   />
                </p>
            </slot>

            <slot name="email">
                <p class="flex flex-row items-start gap-2 justify-between mt-2 text-xs" v-if="email">
                    <a :href="'mailto:' + email"> {{ email }} </a>
                    <Icon class="text-xl" name="material-symbols:alternate-email"   />
                </p>
            </slot>
        </address>
    </div>

</template>

<style scoped>
@keyframes slide-in-bounce {
    0% {
        transform: translateX(-100%);
    }

    60% {
        transform: translateX(-10px);
    }

    80% {
        transform: translateX(-50px);
    }

    100% {
        transform: translateX(-40px);
    }
}

.animate-slide-in-bounce {
    animation: slide-in-bounce 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
</style>

2 Copy main implementation file

This is the main Vue file that uses the component. Copy-paste this into your project. In this code feel free to change anything you like, such as the component name, props, or class. This is the place where you control the main component.

spring.vue
<script setup>
const websiteName = "Website Name"; // Replace with your actual website name
const websiteDescription = "Catching headline for your website"; // Replace with your actual website description
const links = [
  { name: "Get started", path: "/get-started" },
  { name: "Learn more", path: "/learn-more" },
  { name: "Components", path: "/components" },
  { name: "Some page", path: "/" },
  { name: "Contact", path: "/" },
];
const adress = "Best street, 00-000 NYC";
const phone = "+66 123 456 789";
const email = "[email protected]";

const isOpen = ref(true);
</script>

<template>
  <div>
    <NavSpringDesktop
      :links="links"
      :title="websiteName"
      @toggleMobileMenu="isOpen = !isOpen"
    />

    <NavSpringMobile
      :links="links"
      :title="websiteName"
      :subtitle="websiteDescription"
      :adress="adress"
      :phone="phone"
      :email="email"
      :isOpen="isOpen"
      mobileAdditionalHomePage="Home"
    />
  </div>
</template>

3 Apply your styles

Decide whether you want a global design-system  or a one-off inline snippet.

Full design system

Complete @theme block – import once and share across every component.

Use when:

  • You want to use multiple components across your site, and you want them to match your design system.
  • You want to change the design of all components at once.

How to use:

Copy the code below into main.css file. It is most likely in assets/css/main.css directory.

Single component

:style binding – paste straight onto any of ours components.

Use when:

  • You want to use a single component without affecting the rest of your design system.
  • You already use multiple components but you want this one to have a different style.

How to use:

Copy the code below and paste it into the :style binding of the component.

4 Manual Actions

I wish I could automate every little thing—but for now you’ll need to handle these final steps by hand. Apologies for the extra work!

Paste your chosen iq-card-* style

Now that you’ve picked a card preset, copy its CSS into your @layer components block in main.css. This ensures every `iq-card` wrapper will look just right.

Copy or customize iq-cta

iq-cta is the main call to action button class. It’s used in many places across the components. But for now it is only a single class that you can customize. You can copy the code below and paste it into your @layer components block in main.css. In future you will be able to fully customize it from our UI and choose from many presets.

3. Audit forms & inputs if you used any

I didn't have time to figure out consistency. Although there are no actions required, be mindful that the forms might not be entirely consistent with the design system. A quick once-over will keep everything looking sharp.