Skip to content

Commit f6bf671

Browse files
committed
status page
1 parent e61c88b commit f6bf671

Some content is hidden

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

41 files changed

+3237
-1
lines changed

apps/status

Lines changed: 0 additions & 1 deletion
This file was deleted.

apps/status/.cta.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"projectName": "start-app",
3+
"mode": "file-router",
4+
"typescript": true,
5+
"tailwind": true,
6+
"packageManager": "bun",
7+
"addOnOptions": {},
8+
"git": true,
9+
"version": 1,
10+
"framework": "react-cra",
11+
"chosenAddOns": ["eslint", "nitro", "start"]
12+
}

apps/status/README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# TanStack Start + shadcn/ui
2+
3+
This is a template for a new TanStack Start project with React, TypeScript, and shadcn/ui.

apps/status/components.json

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

apps/status/package.json

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
{
2+
"name": "status",
3+
"private": true,
4+
"type": "module",
5+
"scripts": {
6+
"dev": "vite dev --port 2000",
7+
"build": "vite build",
8+
"preview": "vite preview",
9+
"test": "vitest run",
10+
"lint": "eslint",
11+
"format": "prettier",
12+
"check": "prettier --write . && eslint --fix"
13+
},
14+
"dependencies": {
15+
"@base-ui/react": "^1.0.0",
16+
"@databuddy/db": "workspace:*",
17+
"@fontsource-variable/inter": "^5.2.8",
18+
"@phosphor-icons/react": "catalog:",
19+
"@tailwindcss/vite": "^4.1.18",
20+
"@tanstack/react-devtools": "^0.7.11",
21+
"@tanstack/react-router": "^1.141.2",
22+
"@tanstack/react-router-devtools": "^1.141.2",
23+
"@tanstack/react-router-ssr-query": "^1.141.2",
24+
"@tanstack/react-start": "^1.141.3",
25+
"@tanstack/router-plugin": "^1.141.2",
26+
"class-variance-authority": "^0.7.1",
27+
"clsx": "^2.1.1",
28+
"dayjs": "^1.11.13",
29+
"nitro": "latest",
30+
"react": "^19.2.3",
31+
"react-dom": "^19.2.3",
32+
"shadcn": "^3.6.0",
33+
"tailwind-merge": "^3.4.0",
34+
"tailwindcss": "^4.1.18",
35+
"tw-animate-css": "^1.4.0",
36+
"vite-tsconfig-paths": "^5.1.4"
37+
},
38+
"devDependencies": {
39+
"@tanstack/devtools-vite": "^0.3.12",
40+
"@tanstack/eslint-config": "^0.3.4",
41+
"@testing-library/dom": "^10.4.1",
42+
"@testing-library/react": "^16.3.0",
43+
"@types/node": "^22.19.2",
44+
"@types/react": "^19.2.7",
45+
"@types/react-dom": "^19.2.3",
46+
"@vitejs/plugin-react": "^5.1.2",
47+
"jsdom": "^27.3.0",
48+
"prettier": "^3.7.4",
49+
"typescript": "^5.9.3",
50+
"vite": "^7.2.7",
51+
"vitest": "^3.2.4",
52+
"web-vitals": "^5.1.0"
53+
}
54+
}

apps/status/public/favicon.ico

3.78 KB
Binary file not shown.

apps/status/public/logo192.png

5.22 KB
Loading

apps/status/public/logo512.png

9.44 KB
Loading

apps/status/public/manifest.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"short_name": "TanStack App",
3+
"name": "Create TanStack App Sample",
4+
"icons": [
5+
{
6+
"src": "favicon.ico",
7+
"sizes": "64x64 32x32 24x24 16x16",
8+
"type": "image/x-icon"
9+
},
10+
{
11+
"src": "logo192.png",
12+
"type": "image/png",
13+
"sizes": "192x192"
14+
},
15+
{
16+
"src": "logo512.png",
17+
"type": "image/png",
18+
"sizes": "512x512"
19+
}
20+
],
21+
"start_url": ".",
22+
"display": "standalone",
23+
"theme_color": "#000000",
24+
"background_color": "#ffffff"
25+
}

apps/status/public/robots.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# https://www.robotstxt.org/robotstxt.html
2+
User-agent: *
3+
Disallow:

0 commit comments

Comments
 (0)