feat: render announcements on dashboard
Some checks failed
Node.js CI / Lint and Test (pull_request) Failing after 53s

This commit is contained in:
2025-07-05 19:09:05 -07:00
parent 4ca9042bcd
commit 9842f49fec
14 changed files with 1372 additions and 8 deletions

View File

@ -0,0 +1,37 @@
hr {
width: 100%;
border: none;
border-top: 1px solid var(--foreground);
margin: 0;
}
:host ::ng-deep ul{
list-style-type: disc;
list-style-position: inside;
}
.announcement {
margin: auto;
margin-bottom: 1em;
width: 90%;
}
.tag {
display: inline-block;
padding: 0 0.5em;
border-radius: 50px;
font-size: 0.8em;
}
.products {
background-color: #e0f7fa;
color: #006064;
}
.community {
background-color: #e8f5e9;
color: #1b5e20;
}
.date {
font-style: italic;
}