implement basic placeholder announcement

This commit is contained in:
Michael Genson
2026-03-28 01:05:08 +00:00
parent bd1ed028b5
commit fcf2b7ef2a
4 changed files with 114 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
<template>
<div>
Welcome to Mealie! This is a placeholder test announcement.
</div>
</template>
<script lang="ts">
import type { AnnouncementMeta } from "~/composables/use-announcements";
export const meta: AnnouncementMeta = {
title: "Placeholder Title",
};
</script>