grr-cli 0.4.0

Google tools from the terminal, at maximum performance: zero-config Gmail, Calendar, Drive, Contacts, Chat and Forms over HTTP/3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
interface Props {
  eyebrow: string;
  title: string;
  copy: string;
  id?: string;
}

const { eyebrow, title, copy, id } = Astro.props;
---

<div class="section-heading section-intro">
  <span class="eyebrow">{eyebrow}</span>
  <h2 id={id}>{title}</h2>
  <p>{copy}</p>
</div>