Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 1 addition & 42 deletions app.vue
Original file line number Diff line number Diff line change
@@ -1,48 +1,7 @@
<template>
<Header :links="navigation">
<template #logo>
<span>{{ appConfig.app_name }}</span>
<UBadge label="App" variant="subtle" class="mb-0.5" />
</template>
</Header>

<main class="min-h-[calc(100vh-var(4rem))]">
<NuxtPage />
</main>

<Footer :links="navigation">
<template #left>
Copyright © {{ new Date().getFullYear() }} {{ appConfig.app_name }}
</template>
</Footer>
<p>good</p>
</template>

<script setup lang="ts">
import { type NavigationItem } from './types/navigation_item';

const appConfig = useAppConfig();

useHead({
title: 'App Landing Page',
meta: [
{ name: 'viewport', content: 'width=device-width, initial-scale=1' }
],
link: [
{ rel: 'icon', href: '/favicon.ico' }
],
htmlAttrs: {
lang: 'en'
}
})

useSeoMeta({
description: 'Mobile app landing page template. Start converting in minutes.'
});

const navigation: Array<NavigationItem> = [
{ name: "Features", path: "features" },
{ name: "Testimonials", path: "testimonials" },
{ name: "Pricing", path: "pricing" },
{ name: "FAQ", path: "faq" }
];
</script>