With the studio now running in your Next.js app, you don't need the separate sanity-studio
directory anymore. You can delete or close it.
By default, the studio will be blank because you haven't created any schemas files. Let's do that in the next section.
Step 4: Create Content Schemas
Schemas are essentially a way of organizing datasets in a database depending on what type of content you need.
Since we're building a portfolio site, we'll create schemas to handle projects, profile, and so on. To be more specific, you'll create three schemas files for this portfolio project:
profile:
Schema file for defining your personal information like name, about, skills, and so on.project:
Schema file for your projects.work:
Schema file for defining your work experience.
Let's start with the profile schema.