Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17,708 changes: 13,611 additions & 4,097 deletions package-lock.json

Large diffs are not rendered by default.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,13 @@
"test": "vitest"
},
"dependencies": {
"@sanity/client": "^6.28.3",
"@tailwindcss/vite": "^4.0.9",
"framer-motion": "^12.4.7",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router": "^7.2.0",
"sanity": "^3.78.0",
"tailwindcss": "^4.0.9"
},
"devDependencies": {
Expand Down Expand Up @@ -53,4 +55,4 @@
"public"
]
}
}
}
29 changes: 29 additions & 0 deletions sanity/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# Dependencies
/node_modules
/.pnp
.pnp.js

# Compiled Sanity Studio
/dist

# Temporary Sanity runtime, generated by the CLI on every dev server start
/.sanity

# Logs
/logs
*.log

# Coverage directory used by testing tools
/coverage

# Misc
.DS_Store
*.pem

# Typescript
*.tsbuildinfo

# Dotenv and similar local-only files
*.local
9 changes: 9 additions & 0 deletions sanity/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Sanity Clean Content Studio

Congratulations, you have now installed the Sanity Content Studio, an open-source real-time content editing environment connected to the Sanity backend.

Now you can do the following things:

- [Read “getting started” in the docs](https://www.sanity.io/docs/introduction/getting-started?utm_source=readme)
- [Join the community Slack](https://slack.sanity.io/?utm_source=readme)
- [Extend and build plugins](https://www.sanity.io/docs/content-studio/extending?utm_source=readme)
22 changes: 22 additions & 0 deletions sanity/documents/about.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { defineType, defineField } from "sanity"

const about = defineType({
name: "about",
title: "About",
type: "document",
fields: [
defineField({
name: "title",
title: "Title",
type: "string"
}),
defineField({
name: "content",
title: "Content",
type: "array",
of: [{type: "block"}]
})
]
})

export default about
3 changes: 3 additions & 0 deletions sanity/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import studio from '@sanity/eslint-config-studio'

export default [...studio]
Loading