The Building Blocks for
Modern Web Apps
Nuxt UI Pro is a collection of premium components built on top of Nuxt UI to create beautiful & responsive Nuxt applications in minutes.
It includes all primitives to build landing pages, documentation, blogs, changelog, dashboards or entire SaaS products.
app.vue<script setup lang="ts">const links = [ { to: '/', label: 'Home' }, { to: '/about', label: 'About' }, { to: '/contact', label: 'Contact' }]</script><template> <UHeader :links="links" /> <UMain> <ULandingHero title="Hello World" /> <ULandingSection title="Features"> <UPageGrid> <ULandingCard title="First Card" /> <ULandingCard title="Second Card" /> <ULandingCard title="Third Card" /> </UPageGrid> </ULandingSection> </UMain> <UFooter /></template>