Skip to content

Commit

Permalink
rename "integration" guide to "usage"
Browse files Browse the repository at this point in the history
  • Loading branch information
WickyNilliams committed Mar 26, 2024
1 parent 66b8c82 commit 8268860
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 18 deletions.
10 changes: 5 additions & 5 deletions docs/src/pages/guides/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@ import Link from "../../components/Link.astro";

<ul>
<li>
<Link href="/guides/frameworks/">Frameworks</Link> - integrating Cally with
your framework of choice
<Link href="/guides/frameworks/">Frameworks</Link> - integrating with your
framework of choice
</li>
<li>
<Link href="/guides/theming/">Theming</Link> - customizing the look and feel
of Cally to match your app
to match your app
</li>
<li>
<Link href="/guides/integration/">Integration</Link> - integrating Cally
with your existing components
<Link href="/guides/usage/">Usage</Link> - integrating with your existing
components to build more complex UIs
</li>
</ul>
</p>
Expand Down
4 changes: 2 additions & 2 deletions docs/src/pages/guides/theming.astro
Original file line number Diff line number Diff line change
Expand Up @@ -593,8 +593,8 @@ const colorTextOnAccent = "#ffffff";
<p>
To find out more about each component, please see the respective
<Link href="/components/">component API</Link> docs. Or visit the
<Link href="/guides/integration/">integration</Link> guide for an in-depth look
at how to use Cally with existing components.
<Link href="/guides/usage/">usage</Link> guide for an in-depth look at how to
use Cally with existing components.
</p>
</Layout>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Heading from "../../components/Heading.astro";
import Link from "../../components/Link.astro";
---

<Layout title="Integration">
<Layout title="Usage">
<link
slot="head"
rel="stylesheet"
Expand All @@ -20,7 +20,7 @@ import Link from "../../components/Link.astro";
src="https://cdn.jsdelivr.net/npm/@shoelace-style/shoelace@2.14.0/cdn/shoelace.js"
></script>

<h1 slot="intro">Integrating with other components</h1>
<h1 slot="intro">Usage with existing components</h1>
<PageIntro slot="intro">Let's build a date range picker</PageIntro>

<p>
Expand Down
15 changes: 6 additions & 9 deletions docs/src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,8 @@ const tagline = "Small, feature-rich calendar components";
logical properties, RTL support
</li>
<li>
<strong>Themeable</strong> - CSS
<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/::part">parts</a
>
and custom properties to offer flexibility and power
<strong>Themeable</strong> - CSS parts and custom properties to offer flexibility
and power
</li>
<li>
<strong>Composable</strong> - impose no DOM specific structure, play well with
Expand Down Expand Up @@ -156,11 +154,10 @@ const tagline = "Small, feature-rich calendar components";
<p>
For a detailed look at each component, check out the respective
<Link href="/components/">component API</Link> docs. The
<Link href="/guides/theming/">theming</Link> guide to explains how to style the
components to match your designs. And the
<Link href="/guides/integration/">integration</Link> guide explains how to compose
Cally's components to build a date/range picker using your own or third-party
components.
<Link href="/guides/">guides</Link> section offers walkthroughs on
<Link href="/guides/theming/">theming</Link>,
<Link href="/guides/frameworks/">framework integration</Link>, and
<Link href="/guides/usage/">usage with existing components</Link>.
</p>

<p>
Expand Down

0 comments on commit 8268860

Please sign in to comment.