Skip to content
BaseLayer Themes

Services 01

Icon grid of services or capabilities

Live preview

What I do

End-to-end web development — from first wireframe to production deploy. I partner with designers, agencies, and founders who value quality over shortcuts.

Frontend Development

Pixel-perfect implementations with Astro, React, and Tailwind. Performance budgets, accessibility, and responsive design baked in.

Marketing Sites

High-converting landing pages and multi-page marketing sites. SEO-ready, CMS-connected, and easy for your team to update.

Headless CMS

Sanity, Contentful, or Markdown — structured content models, preview workflows, and editor-friendly Studio setups.

Performance & SEO

Core Web Vitals optimization, semantic markup, structured data, and sitemaps. Sites that rank and load fast.

File: src/blocks/services/Services01.astro

Service / capability grid with optional Lucide icons per item.

Config (blocks.tsservices)

services: {
    width: "standard",
    heading: "What I do",
    subheading:
      "End-to-end web development — from first wireframe to production deploy. I partner with designers, agencies, and founders who value quality over shortcuts.",
    items: [
      {
        icon: "code",
        title: "Frontend Development",
        description:
          "Pixel-perfect implementations with Astro, React, and Tailwind. Performance budgets, accessibility, and responsive design baked in.",
      },
      {
        icon: "layout-template",
        title: "Marketing Sites",
        description:
          "High-converting landing pages and multi-page marketing sites. SEO-ready, CMS-connected, and easy for your team to update.",
      },
      {
        icon: "layers",
        title: "Headless CMS",
        description:
          "Sanity, Contentful, or Markdown — structured content models, preview workflows, and editor-friendly Studio setups.",
      },
      {
        icon: "zap",
        title: "Performance & SEO",
        description:
          "Core Web Vitals optimization, semantic markup, structured data, and sitemaps. Sites that rank and load fast.",
      },
    ],
  },

Add to a page

---
import Services01 from "@/blocks/services/Services01.astro";
---

<Services01 />

Props override matching keys from config:

<Services01
  heading="Custom headline"
/>

Props

Prop Config key Type / values Default / notes
sectionId services.sectionId string Default "services"; DOM id for the section; not in config
heading services.heading string
subheading services.subheading string
items services.items Array of { title, description, icon?: string } Content list for this block

← Services versions · Blocks overview