UNPKG

create-split

Version:

CLI tool to connect Next.js sites to Split AI content delivery system

59 lines (44 loc) 2.1 kB
--- title: "Getting Started with Split: AI-Powered Content Delivery" description: "Learn how to leverage Split's AI agent to automatically publish SEO and AEO optimized content to your Next.js website." date: "2023-06-15" author: "Split AI" tags: ["next.js", "ai", "seo", "content"] slug: "getting-started-with-split" --- # Getting Started with Split: AI-Powered Content Delivery Welcome to Split! This is an example of the content that Split's AI agent will deliver to your Next.js website. ## What is Split? Split is an AI-powered content delivery system that connects to your static site and acts as a remote publishing agent for SEO and AEO (AI Engine Optimization) content. ## How It Works 1. **Configure your content strategy** in the Split dashboard 2. **Split generates optimized content** using state-of-the-art AI 3. **Content is delivered** directly to your site via the webhook you just installed 4. **Your site is indexed** by search engines and LLMs like ChatGPT and Perplexity ## Benefits of AI-Powered Content - **SEO Optimized**: Content is crafted to rank well in traditional search engines - **AEO Ready**: Structured for maximum visibility in AI systems like ChatGPT - **Always Fresh**: Regular updates keep your content relevant - **Zero Effort**: Content is researched, written, and published automatically ## Code Example Here's a simple React component to display Split content: ```jsx export function BlogPost({ post }) { return ( <article> <h1>{post.title}</h1> <div className="metadata"> <time>{formatDate(post.date)}</time> <span>By {post.author}</span> </div> <div className="content">{post.content}</div> </article> ); } ``` ## Next Steps 1. Visit [split.dev](https://split.dev) to configure your content strategy 2. Choose your topics, tone, and publishing schedule 3. Watch as high-quality content is automatically delivered to your site --- This is just a sample post. Your real Split content will be tailored to your specific niche and audience, optimized for both search engines and AI systems.