mirror of
https://github.com/katanemo/plano.git
synced 2026-04-27 17:56:28 +02:00
introduce SEO optimization and improve blog content rendering (#709)
* introduce SEO optimizations for marketing reach * quality of life updates to Next * format with biome * improve wording on home badge * adding additional keyword based on trends * add code block and markdown support for blogs * Update metadata for SEO
This commit is contained in:
parent
2941392ed1
commit
56b3246f30
22 changed files with 3314 additions and 736 deletions
|
|
@ -1,4 +1,7 @@
|
|||
import { defineConfig } from "sanity";
|
||||
import { codeInput } from "@sanity/code-input";
|
||||
import { table } from "@sanity/table";
|
||||
import { markdownSchema } from "sanity-plugin-markdown";
|
||||
import { structureTool } from "sanity/structure";
|
||||
import { schemaTypes } from "./schemaTypes";
|
||||
|
||||
|
|
@ -11,7 +14,7 @@ export default defineConfig({
|
|||
|
||||
basePath: "/studio",
|
||||
|
||||
plugins: [structureTool()],
|
||||
plugins: [structureTool(), codeInput(), table(), markdownSchema()],
|
||||
|
||||
schema: {
|
||||
types: schemaTypes,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue