feat(web): complete MVP0 public layout, banner, and SEO baseline
This commit is contained in:
@@ -12,6 +12,20 @@ async function main() {
|
||||
status: "published",
|
||||
},
|
||||
})
|
||||
|
||||
await db.systemSetting.upsert({
|
||||
where: { key: "public.header_banner" },
|
||||
update: {},
|
||||
create: {
|
||||
key: "public.header_banner",
|
||||
value: JSON.stringify({
|
||||
enabled: true,
|
||||
message: "New portfolio release is live.",
|
||||
ctaLabel: "Open latest posts",
|
||||
ctaHref: "/",
|
||||
}),
|
||||
},
|
||||
})
|
||||
}
|
||||
|
||||
main()
|
||||
|
||||
Reference in New Issue
Block a user