1. Docs

FeaturesList

Example

Live

Usage

<script>
    import FeaturesList from '$lib/dist/components/FeaturesList.svelte';
</script>

<FeaturesList
    image_src="/images/blog.avif"
    title={'Powerful <span class="text-accent">Blogging</span> System with Markdown'}
    description="Create a blog with markdown and deploy it with Vercel or Netlify."
    features={[
      'Fast and reliable: Built with SvelteKit',
      'SEO friendly: Meta tags, Schema Markup, etc.',
      'Open Graph and Twitter Card support',
      'Use Markdown, HTML or use Svelte Components',
      'RSS feed support',
      'Syntax highlighting with Shiki',
      'Sitemap.xml for easy link discovery',
      'Multiple authors support',
      'Publish Unlisted posts (only accessible via direct link)',
      'Builds into prerendered static files',
      'Deploy anywhere: Vercel, Netlify, Cloudflare, etc.',
    ]}
/>