Skip to content

Commit aad8773

Browse files
authored
Merge pull request #3 from AbandonTech/feature/custom-embed
add userSeoMeta to create custom embed
2 parents 3115b88 + 451f349 commit aad8773

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

app.vue

+10
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,14 @@
1616
class: "bg-base-100 text-primary-content"
1717
}
1818
})
19+
20+
useSeoMeta({
21+
title: "AbandonTech",
22+
ogTitle: "AbandonTech",
23+
description: "Empowering Businesses Through Technology",
24+
ogDescription: "Empowering Businesses Through Technology",
25+
ogImage: "/img/logoVerticalColor.svg",
26+
twitterCard: "summary_large_image",
27+
themeColor: "#1A67D7"
28+
})
1929
</script>

components/ProjectCard.vue

+3-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
<p class="text-lg lg:w-10/12 text-center mt-4 md:mt-12 lg:mt-0 mx-auto">{{ props.description }}</p>
1010
<div class="flex flex-col lg:flex-row gap-4 items-center justify-center">
1111
<NuxtLink :to="props.internalLink"><button type="button" class="btn btn-md w-64 lg:w-28 xl:w-44 2xl:w-48 btn-primary">Learn More</button></NuxtLink>
12-
<NuxtLink :to="props.externalLink" target="_blank" rel="noreferrer"><button type="button" class="btn btn-md w-64 lg:w-44 xl:w-44 2xl:w-48 btn-outline">{{ props.title }} <font-awesome-icon icon="fa-solid fa-arrow-up-right-from-square" /></button></NuxtLink>
12+
<ClientOnly>
13+
<NuxtLink :to="props.externalLink" target="_blank" rel="noreferrer"><button type="button" class="btn btn-md w-64 lg:w-44 xl:w-44 2xl:w-48 btn-outline">{{ props.title }} <font-awesome-icon icon="fa-solid fa-arrow-up-right-from-square" /></button></NuxtLink>
14+
</ClientOnly>
1315
</div>
1416

1517
</div>

0 commit comments

Comments
 (0)