-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCardGrid.tsx
More file actions
35 lines (31 loc) · 1.16 KB
/
CardGrid.tsx
File metadata and controls
35 lines (31 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import styles from './CardGrid.module.css';
export default function CardGrid() {
return (
<div class={styles.grid}>
<a href="https://www.solidjs.com/" target="_new" class={styles.card}>
<h3>Documentation →</h3>
<p>Find comprehensive information about Solid features and API.</p>
</a>
<a
href="https://www.solidjs.com/tutorial/introduction_basics"
target="_new"
class={styles.card}
>
<h3>Learn →</h3>
<p>Learn Solid through our interactive tutorial!</p>
</a>
<a href="https://www.solidjs.com/examples/counter" target="_new" class={styles.card}>
<h3>Examples →</h3>
<p>Checkout our gallery of Solid example projects.</p>
</a>
<a href="https://www.solidjs.com/examples/counter" target="_new" class={styles.card}>
<h3>Play →</h3>
<p>Visit the playground to test ideas and see Solid compiled output!</p>
</a>
<a href="https://netlify.com" target="_new" class={styles.card}>
<h3>Deploy →</h3>
<p>Instantly deploy your Solid app to a public URL with Netlify.</p>
</a>
</div>
);
}