funny changes

This commit is contained in:
2026-02-17 18:39:45 +01:00
parent 84117a55aa
commit a27337103e
2 changed files with 77 additions and 71 deletions

View File

@@ -1,28 +1,24 @@
<script setup>
useHead({
meta: [
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
],
link: [
{ rel: 'icon', href: '/favicon.ico' }
],
meta: [{ name: "viewport", content: "width=device-width, initial-scale=1" }],
link: [{ rel: "icon", href: "/favicon.ico" }],
htmlAttrs: {
lang: 'en'
}
})
lang: "en",
},
});
const title = 'Nuxt Starter Template'
const description = 'A production-ready starter template powered by Nuxt UI. Build beautiful, accessible, and performant applications in minutes, not hours.'
const title = "Baupark Mühltal";
const description = "Baupark Mühltal";
useSeoMeta({
title,
description,
ogTitle: title,
ogDescription: description,
ogImage: 'https://ui.nuxt.com/assets/templates/nuxt/starter-light.png',
twitterImage: 'https://ui.nuxt.com/assets/templates/nuxt/starter-light.png',
twitterCard: 'summary_large_image'
})
ogImage: "https://ui.nuxt.com/assets/templates/nuxt/starter-light.png",
twitterImage: "https://ui.nuxt.com/assets/templates/nuxt/starter-light.png",
twitterCard: "summary_large_image",
});
</script>
<template>

View File

@@ -1,54 +1,61 @@
<template>
<div>
<UPageHero
title="Nuxt Starter Template"
description="A production-ready starter template powered by Nuxt UI. Build beautiful, accessible, and performant applications in minutes, not hours."
:links="[{
title="Baupark Mühltal"
description="Schüttgüter/Recycling | Baumaschinenvermietung | Containerdienst"
:links="[
{
label: 'Get started',
to: 'https://ui.nuxt.com/docs/getting-started/installation/nuxt',
target: '_blank',
trailingIcon: 'i-lucide-arrow-right',
size: 'xl'
}, {
label: 'Use this template',
to: 'https://github.com/nuxt-ui-templates/starter',
target: '_blank',
icon: 'i-simple-icons-github',
size: 'xl',
color: 'neutral',
variant: 'subtle'
}]"
},
]"
/>
<UPageSection
id="features"
title="Everything you need to build modern Nuxt apps"
description="Start with a solid foundation. This template includes all the essentials for building production-ready applications with Nuxt UI's powerful component system."
:features="[{
:features="[
{
icon: 'i-lucide-rocket',
title: 'Production-ready from day one',
description: 'Pre-configured with TypeScript, ESLint, Tailwind CSS, and all the best practices. Focus on building features, not setting up tooling.'
}, {
description:
'Pre-configured with TypeScript, ESLint, Tailwind CSS, and all the best practices. Focus on building features, not setting up tooling.',
},
{
icon: 'i-lucide-palette',
title: 'Beautiful by default',
description: 'Leveraging Nuxt UI\'s design system with automatic dark mode, consistent spacing, and polished components that look great out of the box.'
}, {
description:
'Leveraging Nuxt UI\'s design system with automatic dark mode, consistent spacing, and polished components that look great out of the box.',
},
{
icon: 'i-lucide-zap',
title: 'Lightning fast',
description: 'Optimized for performance with SSR/SSG support, automatic code splitting, and edge-ready deployment. Your users will love the speed.'
}, {
description:
'Optimized for performance with SSR/SSG support, automatic code splitting, and edge-ready deployment. Your users will love the speed.',
},
{
icon: 'i-lucide-blocks',
title: '100+ components included',
description: 'Access Nuxt UI\'s comprehensive component library. From forms to navigation, everything is accessible, responsive, and customizable.'
}, {
description:
'Access Nuxt UI\'s comprehensive component library. From forms to navigation, everything is accessible, responsive, and customizable.',
},
{
icon: 'i-lucide-code-2',
title: 'Developer experience first',
description: 'Auto-imports, hot module replacement, and TypeScript support. Write less boilerplate and ship more features.'
}, {
description:
'Auto-imports, hot module replacement, and TypeScript support. Write less boilerplate and ship more features.',
},
{
icon: 'i-lucide-shield-check',
title: 'Built for scale',
description: 'Enterprise-ready architecture with proper error handling, SEO optimization, and security best practices built-in.'
}]"
description:
'Enterprise-ready architecture with proper error handling, SEO optimization, and security best practices built-in.',
},
]"
/>
<UPageSection>
@@ -56,20 +63,23 @@
title="Ready to build your next Nuxt app?"
description="Join thousands of developers building with Nuxt and Nuxt UI. Get this template and start shipping today."
variant="subtle"
:links="[{
:links="[
{
label: 'Start building',
to: 'https://ui.nuxt.com/docs/getting-started/installation/nuxt',
target: '_blank',
trailingIcon: 'i-lucide-arrow-right',
color: 'neutral'
}, {
color: 'neutral',
},
{
label: 'View on GitHub',
to: 'https://github.com/nuxt-ui-templates/starter',
target: '_blank',
icon: 'i-simple-icons-github',
color: 'neutral',
variant: 'outline'
}]"
variant: 'outline',
},
]"
/>
</UPageSection>
</div>