> ## Documentation Index
> Fetch the complete documentation index at: https://site.aspect.build/llms.txt
> Use this file to discover all available pages before exploring further.

# Company — Aspect Build Blog

> 10 Company posts from the Aspect Build engineering blog on Bazel and developer productivity.

export const BlogCard = ({title, description, date, authors, tags, image, href, children}) => {
  const tagList = tags ? tags.split(", ").filter(Boolean) : [];
  const tagSlug = t => t.toLowerCase().replace(/&/g, "").replace(/\+/g, "").replace(/[^a-z0-9]+/g, "-").replace(/^-+|-+$/g, "");
  const formattedDate = date ? new Date(date + "T00:00:00").toLocaleDateString("en-US", {
    year: "numeric",
    month: "short",
    day: "numeric"
  }) : "";
  const resolvedImage = typeof image === "string" && image.trim() === "" ? null : image;
  return <div data-tags={tagList.join(",")} className="blog-card flex flex-col rounded-xl border border-zinc-200 dark:border-zinc-700 bg-white dark:bg-zinc-800 overflow-hidden hover:shadow-lg transition group">
      <a href={href} className="block">
        {resolvedImage ? typeof resolvedImage === "string" ? <img noZoom src={resolvedImage} alt={title} className="w-full" style={{
    height: "180px",
    objectFit: "cover"
  }} /> : <div className="blog-card-image">{resolvedImage}</div> : children ? <div className="blog-card-image">{children}</div> : null}
        <div className="px-5 pt-5">
          <h3 className="text-lg font-semibold text-zinc-900 dark:text-white group-hover:text-blue-600 dark:group-hover:text-blue-400 transition">
            {title}
          </h3>
          {description && <p className="mt-2 text-sm text-zinc-600 dark:text-zinc-400 line-clamp-2">
              {description}
            </p>}
          <div className="flex items-center gap-2 mt-3 text-xs text-zinc-500 dark:text-zinc-400">
            {authors && <span>{authors}</span>}
            {authors && formattedDate && <span>·</span>}
            {formattedDate && <span>{formattedDate}</span>}
          </div>
        </div>
      </a>
      {tagList.length > 0 && <div className="flex flex-wrap gap-1.5 px-5 pb-4 pt-3 mt-auto">
          {tagList.map(tag => <a key={tag} href={"/blog/tags/" + tagSlug(tag)} className="px-2 py-0.5 rounded-full text-xs bg-zinc-100 dark:bg-zinc-800 text-zinc-600 dark:text-zinc-400 hover:bg-blue-100 dark:hover:bg-blue-900/40 hover:text-blue-700 dark:hover:text-blue-300 transition">
              {tag}
            </a>)}
        </div>}
    </div>;
};

export const MarketingPage = () => <div className="marketing-page-marker" style={{
  display: "none"
}} />;

export const Section = ({children, className = "", gray = false, dark = false, id}) => <section id={id} className={`w-full flex justify-center px-4 py-16 md:py-24 ${gray ? "bg-gray-50 dark:bg-zinc-900" : dark ? "bg-zinc-900 dark:bg-zinc-950" : ""} ${className}`}>
    <div className="w-full" style={{
  maxWidth: "1140px"
}}>
      {children}
    </div>
  </section>;

export const Hero = ({title, subtitle, badge, eyebrow, heroImageClassName = "", primaryCta, primaryHref = "#", secondaryCta, secondaryHref = "#", centered = true, children}) => <section className="w-full flex justify-center px-4 pt-16 pb-16 md:pt-24 md:pb-24" style={{
  background: "linear-gradient(180deg, var(--hero-gradient-start, #f8fafc) 0%, var(--hero-gradient-end, #ffffff) 100%)"
}}>
    <div className="w-full" style={{
  maxWidth: "1140px"
}}>
      {centered && !children ? <div className="flex flex-col items-center text-center">
          {badge && <div className="inline-flex items-center gap-2 px-4 py-1.5 rounded-full bg-blue-50 dark:bg-blue-900/30 border border-blue-200 dark:border-blue-700 text-blue-700 dark:text-blue-300 text-sm font-medium mb-6">
              {badge}
            </div>}
          {eyebrow && <div className="text-xs font-semibold tracking-widest uppercase text-blue-600 dark:text-blue-400 mb-4">
              {eyebrow}
            </div>}
          <h1 className="text-4xl md:text-5xl font-semibold text-zinc-900 dark:text-white leading-tight tracking-tight" style={{
  maxWidth: "820px"
}}>
            {String(title).split(/\\n|\n/).map((line, i) => i ? [<br key={i} />, line] : line)}
          </h1>
          {subtitle && <div className="subtitle-gap text-lg md:text-xl text-zinc-500 dark:text-zinc-300 leading-relaxed" style={{
  marginTop: "1rem",
  maxWidth: "600px"
}}>
              {subtitle}
            </div>}
          <div className="flex flex-wrap gap-3 mt-10 justify-center">
            {primaryCta && <a href={primaryHref} className="inline-flex items-center px-6 py-3 rounded-lg bg-blue-600 text-white font-semibold hover:bg-blue-700 transition shadow-sm">
                {primaryCta}
              </a>}
            {secondaryCta && <a href={secondaryHref} className={`inline-flex items-center px-6 py-3 rounded-lg border border-zinc-300 dark:border-zinc-600 text-zinc-700 dark:text-zinc-200 font-semibold hover:bg-zinc-50 dark:hover:bg-zinc-800 transition ${secondaryHref === "/request-demo" ? "demo-gradient-btn" : ""}`}>
                {secondaryCta}
              </a>}
          </div>
        </div> : <div className="flex flex-col md:flex-row items-center gap-10 md:gap-16">
          <div className="flex-1 min-w-0">
            {badge && <div className="inline-flex items-center gap-2 px-4 py-1.5 rounded-full bg-blue-50 dark:bg-blue-900/30 border border-blue-200 dark:border-blue-700 text-blue-700 dark:text-blue-300 text-sm font-medium mb-6">
                {badge}
              </div>}
            {eyebrow && <div className="text-xs font-semibold tracking-widest uppercase text-blue-600 dark:text-blue-400 mb-4">
                {eyebrow}
              </div>}
            <h1 className="text-4xl md:text-5xl font-semibold text-zinc-900 dark:text-white leading-tight tracking-tight">
            {String(title).split(/\\n|\n/).map((line, i) => i ? [<br key={i} />, line] : line)}
          </h1>
            {subtitle && <div className="subtitle-gap text-lg md:text-xl text-zinc-500 dark:text-zinc-300 leading-relaxed" style={{
  marginTop: "1rem"
}}>
                {subtitle}
              </div>}
            <div className="flex flex-wrap gap-3 mt-8">
              {primaryCta && <a href={primaryHref} className="inline-flex items-center px-6 py-3 rounded-lg bg-blue-600 text-white font-semibold hover:bg-blue-700 transition shadow-sm">
                  {primaryCta}
                </a>}
              {secondaryCta && <a href={secondaryHref} className={`inline-flex items-center px-6 py-3 rounded-lg border border-zinc-300 dark:border-zinc-600 text-zinc-700 dark:text-zinc-200 font-semibold hover:bg-zinc-50 dark:hover:bg-zinc-800 transition ${secondaryHref === "/request-demo" ? "demo-gradient-btn" : ""}`}>
                  {secondaryCta}
                </a>}
            </div>
          </div>
          {children && <div className={`flex-1 min-w-0 hero-image ${heroImageClassName}`}>
              {children}
            </div>}
        </div>}
    </div>
  </section>;

<MarketingPage />

<Hero title="Posts tagged Company" subtitle="Engineering writing from the Aspect team on Company." centered={true} />

<Section>
  <div className="mb-8">
    <a href="/blog" className="text-blue-600 dark:text-blue-400 font-semibold hover:underline">← All posts</a>
    <span className="mx-2 text-zinc-400">·</span>
    <a href="/blog/tags" className="text-blue-600 dark:text-blue-400 font-semibold hover:underline">Browse all tags</a>
  </div>

  <div className="marketing-grid-3">
    <BlogCard title="Bazel for SONiC: What We've Learned and Contributed" description="We explore the case for adopting Bazel across SONiC Foundation projects and update the SONiC and Bazel community on Aspect Build contributions." date="2026-01-12" authors="Şahin Yort" href="/blog/bazel-for-sonic" tags="Bazel, Migration, Company">
      <img noZoom src="https://mintcdn.com/aspectbuild/x1L7Iep716jCyJVo/images/blog/hashnode/hn-ee3145354f.png?fit=max&auto=format&n=x1L7Iep716jCyJVo&q=85&s=176dc5b3012c102981daf24466a2790d" alt="" width="2716" height="1431" data-path="images/blog/hashnode/hn-ee3145354f.png" />
    </BlogCard>

    <BlogCard title="What's New at BazelCon 2025" description="Wow, it’s been an exciting year in Bazel-land. See highlights from the BazelCon 2025 keynotes, Hackathon, Aspect Build product releases and more." date="2025-11-20" authors="Alex Eagle" href="/blog/bazelcon-2025" tags="Bazel, Gazelle, Company">
      <img noZoom src="https://mintcdn.com/aspectbuild/x1L7Iep716jCyJVo/images/blog/hashnode/hn-5c38c2b694.png?fit=max&auto=format&n=x1L7Iep716jCyJVo&q=85&s=13e15fc67f6449bdbfe36b69566e5a06" alt="" width="1536" height="1024" data-path="images/blog/hashnode/hn-5c38c2b694.png" />
    </BlogCard>

    <BlogCard title="Bootstrap Complete: Aspect Build Raises $3.85M to Enable Developers in Massive, Multi-Language Codebases" description="Aspect Build raises $3.85M to enhance dev workflows for multi-language codebases, driving faster, reliable, and scalable software development" date="2024-10-01" authors="Alex Eagle" href="/blog/seed-round" tags="Company">
      <img noZoom src="https://mintcdn.com/aspectbuild/x1L7Iep716jCyJVo/images/blog/hashnode/hn-bf327746dd.png?fit=max&auto=format&n=x1L7Iep716jCyJVo&q=85&s=0012d12e369a5cd5a1fcabac2b8e3872" alt="" width="3200" height="1680" data-path="images/blog/hashnode/hn-bf327746dd.png" />
    </BlogCard>

    <BlogCard title="Announcing Remote Build Execution" description="Aspect Workflows now includes Remote Build Execution, speeding development by offloading computation to worker machines" date="2024-08-20" authors="Alex Eagle" href="/blog/announcing-remote-build-execution" tags="Remote Execution, CI/CD, Company">
      <img noZoom src="https://mintcdn.com/aspectbuild/x1L7Iep716jCyJVo/images/blog/hashnode/hn-76283152cc.jpeg?fit=max&auto=format&n=x1L7Iep716jCyJVo&q=85&s=cbaecf858ba886265d2665cc6a8091ad" alt="" width="1627" height="1219" data-path="images/blog/hashnode/hn-76283152cc.jpeg" />
    </BlogCard>

    <BlogCard title="Aspect Workflows Case Study: Sourcegraph" description="Learn how Sourcegraph improved CI/CD performance and reduced costs by implementing Aspect Workflows." date="2024-04-23" authors="Alex Eagle" href="/blog/case-study-sourcegraph" tags="Bazel, Company, CI/CD">
      <img noZoom src="https://mintcdn.com/aspectbuild/x1L7Iep716jCyJVo/images/blog/hashnode/hn-4c92c9630e.png?fit=max&auto=format&n=x1L7Iep716jCyJVo&q=85&s=a1f60c02f6c010f4cdbaa78aa8558999" alt="" width="1600" height="840" data-path="images/blog/hashnode/hn-4c92c9630e.png" />
    </BlogCard>

    <BlogCard title="Bazel market growth, year over year" description="Bazel adoption grew by 56% in 2023, with around 950 companies now using it. Learn more about the growth and its implications for businesses and developers." date="2023-11-21" authors="Alex Eagle" href="/blog/bazel-market-2023" tags="Bazel, Company">
      <img noZoom src="https://mintcdn.com/aspectbuild/x1L7Iep716jCyJVo/images/blog/hashnode/hn-76dd3ec987.jpeg?fit=max&auto=format&n=x1L7Iep716jCyJVo&q=85&s=bcdb9e68a2bef8053d5f9d335109245a" alt="" width="1600" height="1067" data-path="images/blog/hashnode/hn-76dd3ec987.jpeg" />
    </BlogCard>

    <BlogCard title="Aspect at BazelCon 2023" description="Discover Aspect's BazelCon updates: bazel lint, bazel-lib 2.0, rules_py, partnership with Chainguard, and more. Watch our talks and explore new features." date="2023-10-30" authors="Alex Eagle" href="/blog/bazelcon-2023" tags="Bazel, Company">
      <img noZoom src="https://mintcdn.com/aspectbuild/x1L7Iep716jCyJVo/images/blog/hashnode/hn-8357d11a0e.jpeg?fit=max&auto=format&n=x1L7Iep716jCyJVo&q=85&s=f8ccf7c285ead7cc7f9339f4b0f0a44d" alt="" width="2734" height="2890" data-path="images/blog/hashnode/hn-8357d11a0e.jpeg" />
    </BlogCard>

    <BlogCard title="What's new at Aspect: Summer 2023" description="Check out Aspect's latest updates: new clients, open-source releases, and upcoming conferences. Improving Bazel workflows for the community." date="2023-08-04" authors="Alex Eagle" href="/blog/summer-2023" tags="Company, Bazel">
      <img noZoom src="https://mintcdn.com/aspectbuild/x1L7Iep716jCyJVo/images/blog/hashnode/hn-36d0c0a9e1.jpeg?fit=max&auto=format&n=x1L7Iep716jCyJVo&q=85&s=6050aab28c8a7506802a9b150679d742" alt="" width="1600" height="1200" data-path="images/blog/hashnode/hn-36d0c0a9e1.jpeg" />
    </BlogCard>

    <BlogCard title="Happy Holidays from Aspect: Winter 2022" description="Aspect reflects on a busy 2022: 20+ companies consulted, Aspect Workflows in Alpha, Aspect CLI 1.0 launch, and rules_js rollouts." date="2022-12-19" authors="Alex Eagle" href="/blog/winter-2022" tags="Company, Bazel">
      <img noZoom src="https://mintcdn.com/aspectbuild/x1L7Iep716jCyJVo/images/blog/hashnode/hn-619e0c3da5.jpeg?fit=max&auto=format&n=x1L7Iep716jCyJVo&q=85&s=1e1934c2307063c856cb6b2f0cdd6265" alt="" width="1600" height="1017" data-path="images/blog/hashnode/hn-619e0c3da5.jpeg" />
    </BlogCard>

    <BlogCard title="Aspect Build, built on Bazel" description="Aspect Build offers Bazel solutions, including a rules docsite, BUILD file automation, and a more user-friendly CLI. Explore more at aspect.build" date="2021-11-17" authors="Alex Eagle" href="/blog/aspect-build" tags="Bazel, Company">
      <img noZoom src="https://mintcdn.com/aspectbuild/x1L7Iep716jCyJVo/images/blog/stock/circuit-board.jpg?fit=max&auto=format&n=x1L7Iep716jCyJVo&q=85&s=011b528d80219d61336df3f6169eee73" alt="" width="800" height="533" data-path="images/blog/stock/circuit-board.jpg" />
    </BlogCard>
  </div>
</Section>
