Skip to content

Commit de997e6

Browse files
authored
implement snowflake welcome page (#97)
1 parent 81a3779 commit de997e6

File tree

2 files changed

+70
-37
lines changed

2 files changed

+70
-37
lines changed

src/content/docs/snowflake/index.md

Lines changed: 0 additions & 37 deletions
This file was deleted.

src/content/docs/snowflake/index.mdx

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
---
2+
title: Welcome to LocalStack for Snowflake Docs
3+
description: LocalStack for Snowflake allows you to develop and test your Snowflake data pipelines entirely on your local machine!
4+
template: doc
5+
editUrl: false
6+
sidebar:
7+
label: Welcome
8+
order: 1
9+
---
10+
11+
import { OverviewCards, HeroCards } from '../../../components/OverviewCards';
12+
// Import SVGs from assets folder
13+
import rocketIcon from '../../../assets/images/GettingStarted_Color.svg';
14+
import buildingsIcon from '../../../assets/images/Enterprise_Color.svg';
15+
import wrenchIcon from '../../../assets/images/Tooling_color.svg';
16+
import connectionsIcon from '../../../assets/images/Integrations_Color.svg';
17+
import cubeIcon from '../../../assets/images/LSAWS_Color.svg';
18+
import starburstIcon from '../../../assets/images/Capabilities_Color.svg';
19+
20+
<HeroCards
21+
cards={[
22+
{
23+
title: "Emulate Snowflake Services",
24+
href: "/snowflake/features"
25+
},
26+
{
27+
title: "Test Your Snowflake Apps",
28+
href: "/snowflake/capabilities"
29+
}
30+
]}
31+
client:load
32+
/>
33+
34+
## What would you like to do today?
35+
36+
<OverviewCards
37+
cards={[
38+
{
39+
title: "Getting Started",
40+
description: "Install and run LocalStack for Snowflake on your machine, and discover the benefits of local data development.",
41+
href: "/snowflake/getting-started",
42+
icon: rocketIcon.src
43+
},
44+
{
45+
title: "Features",
46+
description: "Browse through the Snowflake features that LocalStack supports & emulates in your development environment.",
47+
href: "/snowflake/features",
48+
icon: cubeIcon.src
49+
},
50+
{
51+
title: "Capabilities",
52+
description: "Learn about LocalStack's Snowflake capabilities and using them to accelerate your data pipeline development.",
53+
href: "/snowflake/capabilities",
54+
icon: starburstIcon.src
55+
},
56+
{
57+
title: "Tooling",
58+
description: "Learn how LocalStack's Snowflake tooling can boost your data development & testing efficiency.",
59+
href: "/snowflake/tooling/user-interface",
60+
icon: wrenchIcon.src
61+
},
62+
{
63+
title: "Integrations",
64+
description: "Learn how to use LocalStack for Snowflake with your favorite data tools, libraries & frameworks.",
65+
href: "/snowflake/integrations",
66+
icon: connectionsIcon.src
67+
}
68+
]}
69+
client:load
70+
/>

0 commit comments

Comments
 (0)