-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.vue
More file actions
31 lines (28 loc) · 838 Bytes
/
Copy pathapp.vue
File metadata and controls
31 lines (28 loc) · 838 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<template>
<div class="grid place-items-center">
<div
class="flex min-h-full flex-col justify-center px-4 py-8 lg:py-12 lg:px-8"
>
<TheHeader />
<MacroCalculator />
</div>
</div>
</template>
<script setup lang="ts">
const pageTitle = "Macro Calculator";
const seoTitle = "Get your Macros with this simple calculator.";
const seoDesc =
"Calculate Your Macros: Our user-friendly macro calculator can help you customize your diet, make the most of your macros, and easily reach your fitness and health objectives.";
useHead({
title: pageTitle,
link: [{ rel: "icon", type: "image/svg+xml", href: "/favicon.svg" }],
});
useServerSeoMeta({
title: seoTitle,
ogTitle: seoTitle,
twitterTitle: seoTitle,
description: seoDesc,
ogDescription: seoDesc,
twitterDescription: seoDesc,
});
</script>