34 lines
1 KiB
Text
34 lines
1 KiB
Text
---
|
|
title: Ultra-Minimal Custom HTML Elements
|
|
description: Only the complexity you need. You decide.
|
|
template: splash
|
|
hero:
|
|
tagline: With opt-in progressive upgrades, you get only the complexity you need. You decide.
|
|
# image:
|
|
# file: ../../assets/houston.webp
|
|
actions:
|
|
- text: Get Started
|
|
link: /getting-started
|
|
icon: right-arrow
|
|
- text: Try on CodePen
|
|
link: https://codepen.io/ayoayco-the-styleful/pen/PoVegBK?editors=1010
|
|
icon: external
|
|
variant: minimal
|
|
---
|
|
|
|
import { Card, CardGrid } from '@astrojs/starlight/components';
|
|
|
|
<CardGrid stagger>
|
|
<Card title="Clean." icon="star">
|
|
Skip repetitive things when writing custom elements
|
|
</Card>
|
|
<Card title="Tiny." icon="add-document">
|
|
Only the bare minimum code to boost productivity
|
|
</Card>
|
|
<Card title="Easy." icon="heart">
|
|
Sensible life-cycle hooks that you understand and remember
|
|
</Card>
|
|
<Card title="Familiar." icon="open-book">
|
|
Declarative templates for DOM manipulation & event handlers
|
|
</Card>
|
|
</CardGrid>
|