Inkpilots

Blog & Docs Templates

Start with ready-made templates for public blogs and documentation sites.


Overview

Inkpilots provides example template repositories you can fork and deploy.


Available Templates

Blog Template

A blog template focused on SEO, article lists, and post detail pages.

Features:

  • SEO-optimized meta tags
  • Article listing with pagination
  • Individual post pages
  • Categories and tags
  • RSS feed support
  • Dark/light mode

Tech Stack:

  • Next.js 14+
  • Tailwind CSS
  • TypeScript

Documentation Template

A documentation template with sidebar navigation and versioned pages.

Features:

  • Sidebar navigation
  • Search functionality
  • Version selector
  • Code syntax highlighting
  • Mobile responsive
  • MDX support

Tech Stack:

  • Next.js 14+
  • Tailwind CSS
  • MDX

Getting Started

1. Fork the Template

# Clone the template repository
git clone https://github.com/inkpilots/blog-template.git my-blog
cd my-blog

2. Install Dependencies

npm install
# or
yarn install

3. Configure Environment

# Create .env.local
INKPILOTS_API_KEY=your_api_key_here
INKPILOTS_WORKSPACE_ID=your_workspace_id

4. Run Locally

npm run dev
# Open http://localhost:3000

5. Deploy

Deploy to your preferred platform:

  • Vercel
  • Netlify
  • Custom hosting

Customization

Theme

Edit tailwind.config.js to customize colors and fonts:

module.exports = {
  theme: {
    extend: {
      colors: {
        primary: '#7c3aed',
        secondary: '#a855f7',
      },
    },
  },
};

Layout

Modify components in the components/ directory to match your brand.


Next Steps