"use client"; /** * This file is used for onboarding when you don't have any posts yet and are using the template for the first time. * Once you have content, and know where to go to access the Sanity Studio and create content, you can delete this file. */ import Link from "next/link"; import { useSyncExternalStore } from "react"; const emptySubscribe = () => () => {}; export default function Onboarding() { const target = useSyncExternalStore( emptySubscribe, () => (window.top === window ? undefined : "_blank"), () => "_blank", ); return (

No posts

Get started by creating a new post.

Create Post
); }