Less Set-Up,
More Shipping

A modern, feature-rich starter template for Nuxt 3 projects, integrating Firebase, Lucide Icons, Radix Vue, and TailwindCSS.


<template>
  <div>
    <h1>Nuxt3 Starter Template</h1>
    <p>Move fast and break things! 🚀</p>
    <button @click="launch">Launch the Rocket!</button>
    <p v-if="launched">🚀 Rocket Launched! 🌕</p>
  </div>
</template>

<script setup>
  import { ref } from 'vue';
  const launched = ref(false);

  function launch() {
    launched.value = true;
    console.log('The rocket has launched!');
  }
</script>