Skip to content

Commit 8833b06

Browse files
authored
Docs: add landing page (#833)
* Docs: add landing page * fix: rm components page
1 parent ac8dc93 commit 8833b06

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

77 files changed

+9343
-0
lines changed

landing/astro.config.mjs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// @ts-check
2+
import { defineConfig } from "astro/config";
3+
4+
import react from "@astrojs/react";
5+
6+
import tailwindcss from "@tailwindcss/vite";
7+
8+
// https://astro.build/config
9+
export default defineConfig({
10+
integrations: [react()],
11+
12+
vite: {
13+
plugins: [tailwindcss()],
14+
},
15+
16+
site: "https://docs.swmansion.com",
17+
base: "/live-debugger",
18+
});

landing/components.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": false,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "",
8+
"css": "src/styles/global.css",
9+
"baseColor": "slate",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"iconLibrary": "lucide",
14+
"aliases": {
15+
"components": "@/components",
16+
"utils": "@/lib/utils",
17+
"ui": "@/components/ui",
18+
"lib": "@/lib",
19+
"hooks": "@/hooks"
20+
},
21+
"registries": {}
22+
}

0 commit comments

Comments
 (0)