mirror of
https://github.com/katanemo/plano.git
synced 2026-04-27 09:46:28 +02:00
feat(web): merge DigitalOcean release announcement updates (#860)
* feat(web): announce DigitalOcean acquisition across sites * fix(web): make blog routes resilient without Sanity config * fix(web): add mobile arrow cue to announcement banner * fix(web): point acquisition links to announcement post
This commit is contained in:
parent
0857cfafbf
commit
39b430d74b
15 changed files with 3156 additions and 701 deletions
|
|
@ -10,6 +10,10 @@ interface BlogPost {
|
|||
}
|
||||
|
||||
async function getBlogPosts(): Promise<BlogPost[]> {
|
||||
if (!client) {
|
||||
return [];
|
||||
}
|
||||
|
||||
const query = `*[_type == "blog" && published == true] | order(publishedAt desc) {
|
||||
slug,
|
||||
publishedAt,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue