Adding a ton of stuff

This commit is contained in:
2026-07-17 04:39:18 -07:00
parent 8d9fe8e75d
commit de28a67417
63 changed files with 2027 additions and 613 deletions
+36
View File
@@ -0,0 +1,36 @@
<template>
<v-row class="home-row ml-5">
<v-col
cols="12"
md="8"
>
<main>
<section class="posts-section">
<PublicBlogPostsList />
</section>
</main>
</v-col>
</v-row>
</template>
<script setup lang="ts">
import useBreadcrumbs from "@/use/use-breadcrumbs"
import PublicBlogPostsList from "@/components/blog-posts/PublicBlogPostsList.vue"
useBreadcrumbs("Blog", [
{
title: "Blog",
to: {
name: "BlogPage",
},
},
])
</script>
<style scoped>
.section-eyebrow {
display: block;
font-size: 14px;
}
</style>