@lucaismyname/create-l1-stack 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (57) hide show
  1. package/package.json +27 -0
  2. package/src/index.js +199 -0
  3. package/templates/l1-stack-js/README.md +16 -0
  4. package/templates/l1-stack-js/components.json +22 -0
  5. package/templates/l1-stack-js/eslint.config.js +29 -0
  6. package/templates/l1-stack-js/index.html +13 -0
  7. package/templates/l1-stack-js/jsconfig.json +9 -0
  8. package/templates/l1-stack-js/package.json +42 -0
  9. package/templates/l1-stack-js/postcss.config.js +5 -0
  10. package/templates/l1-stack-js/public/vite.svg +1 -0
  11. package/templates/l1-stack-js/src/App.css +42 -0
  12. package/templates/l1-stack-js/src/App.jsx +21 -0
  13. package/templates/l1-stack-js/src/assets/react.svg +1 -0
  14. package/templates/l1-stack-js/src/components/TopNav.jsx +28 -0
  15. package/templates/l1-stack-js/src/components/ui/button.jsx +48 -0
  16. package/templates/l1-stack-js/src/components/ui/card.jsx +50 -0
  17. package/templates/l1-stack-js/src/components/ui/input.jsx +19 -0
  18. package/templates/l1-stack-js/src/components/ui/label.jsx +16 -0
  19. package/templates/l1-stack-js/src/index.css +134 -0
  20. package/templates/l1-stack-js/src/lib/mysql.js +5 -0
  21. package/templates/l1-stack-js/src/lib/notion.js +7 -0
  22. package/templates/l1-stack-js/src/lib/strapi.js +6 -0
  23. package/templates/l1-stack-js/src/lib/utils.js +6 -0
  24. package/templates/l1-stack-js/src/main.jsx +13 -0
  25. package/templates/l1-stack-js/src/pages/Home.jsx +47 -0
  26. package/templates/l1-stack-js/src/pages/Integrations.jsx +65 -0
  27. package/templates/l1-stack-js/tailwind.config.js +8 -0
  28. package/templates/l1-stack-js/tailwind.config.ts +9 -0
  29. package/templates/l1-stack-js/vite.config.js +13 -0
  30. package/templates/l1-stack-ts/README.md +73 -0
  31. package/templates/l1-stack-ts/components.json +22 -0
  32. package/templates/l1-stack-ts/eslint.config.js +23 -0
  33. package/templates/l1-stack-ts/index.html +13 -0
  34. package/templates/l1-stack-ts/package.json +44 -0
  35. package/templates/l1-stack-ts/postcss.config.js +5 -0
  36. package/templates/l1-stack-ts/public/vite.svg +1 -0
  37. package/templates/l1-stack-ts/src/App.css +42 -0
  38. package/templates/l1-stack-ts/src/App.tsx +21 -0
  39. package/templates/l1-stack-ts/src/assets/react.svg +1 -0
  40. package/templates/l1-stack-ts/src/components/TopNav.tsx +28 -0
  41. package/templates/l1-stack-ts/src/components/ui/button.tsx +57 -0
  42. package/templates/l1-stack-ts/src/components/ui/card.tsx +76 -0
  43. package/templates/l1-stack-ts/src/components/ui/input.tsx +22 -0
  44. package/templates/l1-stack-ts/src/components/ui/label.tsx +24 -0
  45. package/templates/l1-stack-ts/src/index.css +134 -0
  46. package/templates/l1-stack-ts/src/lib/mysql.ts +5 -0
  47. package/templates/l1-stack-ts/src/lib/notion.ts +7 -0
  48. package/templates/l1-stack-ts/src/lib/strapi.ts +6 -0
  49. package/templates/l1-stack-ts/src/lib/utils.ts +6 -0
  50. package/templates/l1-stack-ts/src/main.tsx +13 -0
  51. package/templates/l1-stack-ts/src/pages/Home.tsx +46 -0
  52. package/templates/l1-stack-ts/src/pages/Integrations.tsx +64 -0
  53. package/templates/l1-stack-ts/tailwind.config.ts +9 -0
  54. package/templates/l1-stack-ts/tsconfig.app.json +32 -0
  55. package/templates/l1-stack-ts/tsconfig.json +13 -0
  56. package/templates/l1-stack-ts/tsconfig.node.json +30 -0
  57. package/templates/l1-stack-ts/vite.config.ts +13 -0
package/package.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ "name": "@lucaismyname/create-l1-stack",
3
+ "version": "0.0.2",
4
+ "type": "module",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "bin": {
9
+ "create-l1-stack": "./src/index.js"
10
+ },
11
+ "files": [
12
+ "src",
13
+ "templates"
14
+ ],
15
+ "scripts": {
16
+ "dev": "node ./src/index.js",
17
+ "prepack": "node ./scripts/prepare-templates.js"
18
+ },
19
+ "engines": {
20
+ "node": ">=18"
21
+ },
22
+ "dependencies": {
23
+ "@clack/prompts": "^0.11.0",
24
+ "execa": "^9.6.1",
25
+ "fs-extra": "^11.3.3"
26
+ }
27
+ }
package/src/index.js ADDED
@@ -0,0 +1,199 @@
1
+ #!/usr/bin/env node
2
+ import fs from 'node:fs/promises'
3
+ import path from 'node:path'
4
+ import process from 'node:process'
5
+ import { fileURLToPath } from 'node:url'
6
+
7
+ import { cancel, intro, isCancel, outro, select, text } from '@clack/prompts'
8
+ import fse from 'fs-extra'
9
+ import { execa } from 'execa'
10
+
11
+ const TEMPLATE_JS = 'l1-stack-js'
12
+ const TEMPLATE_TS = 'l1-stack-ts'
13
+
14
+ function resolveTemplateDir(cliDir, language) {
15
+ const templateName = language === 'ts' ? TEMPLATE_TS : TEMPLATE_JS
16
+
17
+ // 1) Prefer templates bundled inside the npm package
18
+ const bundled = path.resolve(cliDir, '../templates', templateName)
19
+ // 2) Fallback for local monorepo development
20
+ const monorepo = path.resolve(cliDir, '../../../templates', templateName)
21
+
22
+ return { bundled, monorepo }
23
+ }
24
+
25
+ function toKebabCaseName(input) {
26
+ return input
27
+ .trim()
28
+ .toLowerCase()
29
+ .replace(/[^a-z0-9-]/g, '-')
30
+ .replace(/-+/g, '-')
31
+ .replace(/^-|-$/g, '')
32
+ }
33
+
34
+ async function pathExists(p) {
35
+ try {
36
+ await fs.access(p)
37
+ return true
38
+ } catch {
39
+ return false
40
+ }
41
+ }
42
+
43
+ async function isDirEmpty(dir) {
44
+ const entries = await fs.readdir(dir)
45
+ return entries.length === 0
46
+ }
47
+
48
+ async function detectPackageManager() {
49
+ // npm first (project goal), but allow yarn/pnpm when available.
50
+ // This is intentionally simple: if commands exist on PATH.
51
+ const candidates = [
52
+ { name: 'npm', install: ['install'], run: ['run'] },
53
+ { name: 'yarn', install: [], run: ['run'] },
54
+ { name: 'pnpm', install: ['install'], run: ['run'] },
55
+ ]
56
+
57
+ for (const c of candidates) {
58
+ try {
59
+ await execa(c.name, ['--version'], { stdio: 'ignore' })
60
+ return c
61
+ } catch {
62
+ // ignore
63
+ }
64
+ }
65
+
66
+ return candidates[0]
67
+ }
68
+
69
+ function formatRunCommand(pm, script) {
70
+ if (pm.name === 'npm') return `npm run ${script}`
71
+ if (pm.name === 'yarn') return `yarn ${script}`
72
+ if (pm.name === 'pnpm') return `pnpm ${script}`
73
+ return `${pm.name} run ${script}`
74
+ }
75
+
76
+ async function main() {
77
+ intro('create-l1-stack')
78
+
79
+ const rawName = await text({
80
+ message: 'Project name',
81
+ placeholder: 'my-app',
82
+ validate: (value) => {
83
+ if (!value?.trim()) return 'Project name is required'
84
+ return undefined
85
+ },
86
+ })
87
+ if (isCancel(rawName)) {
88
+ cancel('Cancelled')
89
+ process.exit(0)
90
+ }
91
+
92
+ const projectName = toKebabCaseName(rawName)
93
+ if (!projectName) {
94
+ cancel('Invalid project name')
95
+ process.exit(1)
96
+ }
97
+
98
+ const language = await select({
99
+ message: 'Use JavaScript or TypeScript?',
100
+ options: [
101
+ { value: 'ts', label: 'TypeScript' },
102
+ { value: 'js', label: 'JavaScript' },
103
+ ],
104
+ initialValue: 'ts',
105
+ })
106
+ if (isCancel(language)) {
107
+ cancel('Cancelled')
108
+ process.exit(0)
109
+ }
110
+
111
+ const targetDir = path.resolve(process.cwd(), projectName)
112
+ const cliDir = path.dirname(fileURLToPath(import.meta.url))
113
+ const { bundled, monorepo } = resolveTemplateDir(cliDir, language)
114
+ const templateDir = (await pathExists(bundled)) ? bundled : monorepo
115
+
116
+ if (!(await pathExists(templateDir))) {
117
+ cancel(`Template not found: ${templateDir}`)
118
+ process.exit(1)
119
+ }
120
+
121
+ if (await pathExists(targetDir)) {
122
+ const stat = await fs.stat(targetDir)
123
+ if (!stat.isDirectory()) {
124
+ cancel(`Target path exists and is not a directory: ${targetDir}`)
125
+ process.exit(1)
126
+ }
127
+
128
+ if (!(await isDirEmpty(targetDir))) {
129
+ cancel(`Target directory is not empty: ${targetDir}`)
130
+ process.exit(1)
131
+ }
132
+ } else {
133
+ await fs.mkdir(targetDir, { recursive: true })
134
+ }
135
+
136
+ await fse.copy(templateDir, targetDir, {
137
+ filter: (src) => {
138
+ // don’t copy workspace/node artifacts
139
+ const base = path.basename(src)
140
+ if (base === 'node_modules' || base === 'dist') return false
141
+ return true
142
+ },
143
+ })
144
+
145
+ // Update package name
146
+ const pkgJsonPath = path.join(targetDir, 'package.json')
147
+ const pkg = await fse.readJson(pkgJsonPath)
148
+ pkg.name = projectName
149
+ await fse.writeJson(pkgJsonPath, pkg, { spaces: 2 })
150
+
151
+ const shouldInstall = await select({
152
+ message: 'Install dependencies now?',
153
+ options: [
154
+ { value: 'yes', label: 'Yes' },
155
+ { value: 'no', label: 'No' },
156
+ ],
157
+ initialValue: 'yes',
158
+ })
159
+ if (isCancel(shouldInstall)) {
160
+ cancel('Cancelled')
161
+ process.exit(0)
162
+ }
163
+
164
+ const pm = await detectPackageManager()
165
+
166
+ if (shouldInstall === 'yes') {
167
+ try {
168
+ await execa(pm.name, pm.install, { cwd: targetDir, stdio: 'inherit' })
169
+ } catch (err) {
170
+ const stderr = err?.stderr ?? ''
171
+ const missingUtils =
172
+ typeof stderr === 'string' &&
173
+ (stderr.includes("'@lucaismyname/l1-utils") || stderr.includes('lucaismyname%2fl1-utils'))
174
+ const authIssue =
175
+ typeof stderr === 'string' &&
176
+ (stderr.toLowerCase().includes('access token expired') || stderr.toLowerCase().includes('login'))
177
+
178
+ cancel(
179
+ `Install failed.\n\nYou can install manually in ${projectName}.` +
180
+ (missingUtils
181
+ ? `\n\nNote: @lucaismyname/l1-utils is not available on npm yet. Publish it first, then try again.`
182
+ : '') +
183
+ (authIssue ? `\n\nNote: your npm session may have expired. Run \"npm login\" and retry.` : '')
184
+ )
185
+
186
+ outro(`Next:\n cd ${projectName}\n ${formatRunCommand(pm, 'dev')}\n`)
187
+ process.exit(1)
188
+ }
189
+ }
190
+
191
+ const nextRun = formatRunCommand(pm, 'dev')
192
+ outro(`Done.\n\nNext:\n cd ${projectName}\n ${nextRun}\n`)
193
+ }
194
+
195
+ main().catch((err) => {
196
+ // eslint-disable-next-line no-console
197
+ console.error(err)
198
+ process.exit(1)
199
+ })
@@ -0,0 +1,16 @@
1
+ # React + Vite
2
+
3
+ This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
+
5
+ Currently, two official plugins are available:
6
+
7
+ - [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react) uses [Babel](https://babeljs.io/) (or [oxc](https://oxc.rs) when used in [rolldown-vite](https://vite.dev/guide/rolldown)) for Fast Refresh
8
+ - [@vitejs/plugin-react-swc](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react-swc) uses [SWC](https://swc.rs/) for Fast Refresh
9
+
10
+ ## React Compiler
11
+
12
+ The React Compiler is not enabled on this template because of its impact on dev & build performances. To add it, see [this documentation](https://react.dev/learn/react-compiler/installation).
13
+
14
+ ## Expanding the ESLint configuration
15
+
16
+ If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project.
@@ -0,0 +1,22 @@
1
+ {
2
+ "$schema": "https://ui.shadcn.com/schema.json",
3
+ "style": "new-york",
4
+ "rsc": false,
5
+ "tsx": false,
6
+ "tailwind": {
7
+ "config": "tailwind.config.js",
8
+ "css": "src/index.css",
9
+ "baseColor": "neutral",
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,0 +1,29 @@
1
+ import js from '@eslint/js'
2
+ import globals from 'globals'
3
+ import reactHooks from 'eslint-plugin-react-hooks'
4
+ import reactRefresh from 'eslint-plugin-react-refresh'
5
+ import { defineConfig, globalIgnores } from 'eslint/config'
6
+
7
+ export default defineConfig([
8
+ globalIgnores(['dist']),
9
+ {
10
+ files: ['**/*.{js,jsx}'],
11
+ extends: [
12
+ js.configs.recommended,
13
+ reactHooks.configs.flat.recommended,
14
+ reactRefresh.configs.vite,
15
+ ],
16
+ languageOptions: {
17
+ ecmaVersion: 2020,
18
+ globals: globals.browser,
19
+ parserOptions: {
20
+ ecmaVersion: 'latest',
21
+ ecmaFeatures: { jsx: true },
22
+ sourceType: 'module',
23
+ },
24
+ },
25
+ rules: {
26
+ 'no-unused-vars': ['error', { varsIgnorePattern: '^[A-Z_]' }],
27
+ },
28
+ },
29
+ ])
@@ -0,0 +1,13 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <link rel="icon" type="image/svg+xml" href="/vite.svg" />
6
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
+ <title>l1-stack-js</title>
8
+ </head>
9
+ <body>
10
+ <div id="root"></div>
11
+ <script type="module" src="/src/main.jsx"></script>
12
+ </body>
13
+ </html>
@@ -0,0 +1,9 @@
1
+ {
2
+ "compilerOptions": {
3
+ "baseUrl": ".",
4
+ "paths": {
5
+ "@/*": ["./src/*"]
6
+ }
7
+ },
8
+ "include": ["src"]
9
+ }
@@ -0,0 +1,42 @@
1
+ {
2
+ "name": "l1-stack-js",
3
+ "private": true,
4
+ "version": "0.0.1",
5
+ "type": "module",
6
+ "scripts": {
7
+ "dev": "vite",
8
+ "build": "vite build",
9
+ "lint": "eslint .",
10
+ "preview": "vite preview"
11
+ },
12
+ "dependencies": {
13
+ "@radix-ui/react-label": "^2.1.8",
14
+ "@radix-ui/react-slot": "^1.2.4",
15
+ "@lucaismyname/l1-utils": "0.0.2",
16
+ "class-variance-authority": "^0.7.1",
17
+ "clsx": "^2.1.1",
18
+ "lucide-react": "^0.563.0",
19
+ "react": "^19.2.0",
20
+ "react-dom": "^19.2.0",
21
+ "react-router-dom": "^7.13.0",
22
+ "tailwind-merge": "^3.4.0",
23
+ "tailwindcss-animate": "^1.0.7",
24
+ "tw-animate-css": "^1.4.0"
25
+ },
26
+ "devDependencies": {
27
+ "@eslint/js": "^9.39.1",
28
+ "@tailwindcss/postcss": "^4.1.18",
29
+ "@types/react": "^19.2.5",
30
+ "@types/react-dom": "^19.2.3",
31
+ "@vitejs/plugin-react": "^5.1.1",
32
+ "autoprefixer": "^10.4.23",
33
+ "eslint": "^9.39.1",
34
+ "eslint-plugin-react-hooks": "^7.0.1",
35
+ "eslint-plugin-react-refresh": "^0.4.24",
36
+ "globals": "^16.5.0",
37
+ "postcss": "^8.5.6",
38
+ "tailwindcss": "^4.1.18",
39
+ "typescript": "^5.9.3",
40
+ "vite": "^7.2.4"
41
+ }
42
+ }
@@ -0,0 +1,5 @@
1
+ export default {
2
+ plugins: {
3
+ '@tailwindcss/postcss': {},
4
+ },
5
+ }
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
@@ -0,0 +1,42 @@
1
+ #root {
2
+ max-width: 1280px;
3
+ margin: 0 auto;
4
+ padding: 2rem;
5
+ text-align: center;
6
+ }
7
+
8
+ .logo {
9
+ height: 6em;
10
+ padding: 1.5em;
11
+ will-change: filter;
12
+ transition: filter 300ms;
13
+ }
14
+ .logo:hover {
15
+ filter: drop-shadow(0 0 2em #646cffaa);
16
+ }
17
+ .logo.react:hover {
18
+ filter: drop-shadow(0 0 2em #61dafbaa);
19
+ }
20
+
21
+ @keyframes logo-spin {
22
+ from {
23
+ transform: rotate(0deg);
24
+ }
25
+ to {
26
+ transform: rotate(360deg);
27
+ }
28
+ }
29
+
30
+ @media (prefers-reduced-motion: no-preference) {
31
+ a:nth-of-type(2) .logo {
32
+ animation: logo-spin infinite 20s linear;
33
+ }
34
+ }
35
+
36
+ .card {
37
+ padding: 2em;
38
+ }
39
+
40
+ .read-the-docs {
41
+ color: #888;
42
+ }
@@ -0,0 +1,21 @@
1
+ import { Navigate, Route, Routes } from 'react-router-dom'
2
+ import TopNav from './components/TopNav'
3
+ import Home from './pages/Home'
4
+ import Integrations from './pages/Integrations'
5
+
6
+ function App() {
7
+ return (
8
+ <div className="min-h-dvh">
9
+ <TopNav />
10
+ <main className="mx-auto max-w-5xl px-4 py-10">
11
+ <Routes>
12
+ <Route path="/" element={<Home />} />
13
+ <Route path="/integrations" element={<Integrations />} />
14
+ <Route path="*" element={<Navigate to="/" replace />} />
15
+ </Routes>
16
+ </main>
17
+ </div>
18
+ )
19
+ }
20
+
21
+ export default App
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="35.93" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 228"><path fill="#00D8FF" d="M210.483 73.824a171.49 171.49 0 0 0-8.24-2.597c.465-1.9.893-3.777 1.273-5.621c6.238-30.281 2.16-54.676-11.769-62.708c-13.355-7.7-35.196.329-57.254 19.526a171.23 171.23 0 0 0-6.375 5.848a155.866 155.866 0 0 0-4.241-3.917C100.759 3.829 77.587-4.822 63.673 3.233C50.33 10.957 46.379 33.89 51.995 62.588a170.974 170.974 0 0 0 1.892 8.48c-3.28.932-6.445 1.924-9.474 2.98C17.309 83.498 0 98.307 0 113.668c0 15.865 18.582 31.778 46.812 41.427a145.52 145.52 0 0 0 6.921 2.165a167.467 167.467 0 0 0-2.01 9.138c-5.354 28.2-1.173 50.591 12.134 58.266c13.744 7.926 36.812-.22 59.273-19.855a145.567 145.567 0 0 0 5.342-4.923a168.064 168.064 0 0 0 6.92 6.314c21.758 18.722 43.246 26.282 56.54 18.586c13.731-7.949 18.194-32.003 12.4-61.268a145.016 145.016 0 0 0-1.535-6.842c1.62-.48 3.21-.974 4.76-1.488c29.348-9.723 48.443-25.443 48.443-41.52c0-15.417-17.868-30.326-45.517-39.844Zm-6.365 70.984c-1.4.463-2.836.91-4.3 1.345c-3.24-10.257-7.612-21.163-12.963-32.432c5.106-11 9.31-21.767 12.459-31.957c2.619.758 5.16 1.557 7.61 2.4c23.69 8.156 38.14 20.213 38.14 29.504c0 9.896-15.606 22.743-40.946 31.14Zm-10.514 20.834c2.562 12.94 2.927 24.64 1.23 33.787c-1.524 8.219-4.59 13.698-8.382 15.893c-8.067 4.67-25.32-1.4-43.927-17.412a156.726 156.726 0 0 1-6.437-5.87c7.214-7.889 14.423-17.06 21.459-27.246c12.376-1.098 24.068-2.894 34.671-5.345a134.17 134.17 0 0 1 1.386 6.193ZM87.276 214.515c-7.882 2.783-14.16 2.863-17.955.675c-8.075-4.657-11.432-22.636-6.853-46.752a156.923 156.923 0 0 1 1.869-8.499c10.486 2.32 22.093 3.988 34.498 4.994c7.084 9.967 14.501 19.128 21.976 27.15a134.668 134.668 0 0 1-4.877 4.492c-9.933 8.682-19.886 14.842-28.658 17.94ZM50.35 144.747c-12.483-4.267-22.792-9.812-29.858-15.863c-6.35-5.437-9.555-10.836-9.555-15.216c0-9.322 13.897-21.212 37.076-29.293c2.813-.98 5.757-1.905 8.812-2.773c3.204 10.42 7.406 21.315 12.477 32.332c-5.137 11.18-9.399 22.249-12.634 32.792a134.718 134.718 0 0 1-6.318-1.979Zm12.378-84.26c-4.811-24.587-1.616-43.134 6.425-47.789c8.564-4.958 27.502 2.111 47.463 19.835a144.318 144.318 0 0 1 3.841 3.545c-7.438 7.987-14.787 17.08-21.808 26.988c-12.04 1.116-23.565 2.908-34.161 5.309a160.342 160.342 0 0 1-1.76-7.887Zm110.427 27.268a347.8 347.8 0 0 0-7.785-12.803c8.168 1.033 15.994 2.404 23.343 4.08c-2.206 7.072-4.956 14.465-8.193 22.045a381.151 381.151 0 0 0-7.365-13.322Zm-45.032-43.861c5.044 5.465 10.096 11.566 15.065 18.186a322.04 322.04 0 0 0-30.257-.006c4.974-6.559 10.069-12.652 15.192-18.18ZM82.802 87.83a323.167 323.167 0 0 0-7.227 13.238c-3.184-7.553-5.909-14.98-8.134-22.152c7.304-1.634 15.093-2.97 23.209-3.984a321.524 321.524 0 0 0-7.848 12.897Zm8.081 65.352c-8.385-.936-16.291-2.203-23.593-3.793c2.26-7.3 5.045-14.885 8.298-22.6a321.187 321.187 0 0 0 7.257 13.246c2.594 4.48 5.28 8.868 8.038 13.147Zm37.542 31.03c-5.184-5.592-10.354-11.779-15.403-18.433c4.902.192 9.899.29 14.978.29c5.218 0 10.376-.117 15.453-.343c-4.985 6.774-10.018 12.97-15.028 18.486Zm52.198-57.817c3.422 7.8 6.306 15.345 8.596 22.52c-7.422 1.694-15.436 3.058-23.88 4.071a382.417 382.417 0 0 0 7.859-13.026a347.403 347.403 0 0 0 7.425-13.565Zm-16.898 8.101a358.557 358.557 0 0 1-12.281 19.815a329.4 329.4 0 0 1-23.444.823c-7.967 0-15.716-.248-23.178-.732a310.202 310.202 0 0 1-12.513-19.846h.001a307.41 307.41 0 0 1-10.923-20.627a310.278 310.278 0 0 1 10.89-20.637l-.001.001a307.318 307.318 0 0 1 12.413-19.761c7.613-.576 15.42-.876 23.31-.876H128c7.926 0 15.743.303 23.354.883a329.357 329.357 0 0 1 12.335 19.695a358.489 358.489 0 0 1 11.036 20.54a329.472 329.472 0 0 1-11 20.722Zm22.56-122.124c8.572 4.944 11.906 24.881 6.52 51.026c-.344 1.668-.73 3.367-1.15 5.09c-10.622-2.452-22.155-4.275-34.23-5.408c-7.034-10.017-14.323-19.124-21.64-27.008a160.789 160.789 0 0 1 5.888-5.4c18.9-16.447 36.564-22.941 44.612-18.3ZM128 90.808c12.625 0 22.86 10.235 22.86 22.86s-10.235 22.86-22.86 22.86s-22.86-10.235-22.86-22.86s10.235-22.86 22.86-22.86Z"></path></svg>
@@ -0,0 +1,28 @@
1
+ import { Link, NavLink } from 'react-router-dom'
2
+
3
+ const navLinkClassName = ({ isActive }) =>
4
+ [
5
+ 'text-sm font-medium transition-colors',
6
+ isActive ? 'text-foreground' : 'text-muted-foreground hover:text-foreground',
7
+ ].join(' ')
8
+
9
+ export default function TopNav() {
10
+ return (
11
+ <header className="border-b">
12
+ <div className="mx-auto flex h-14 max-w-5xl items-center justify-between px-4">
13
+ <Link to="/" className="text-sm font-semibold">
14
+ L1 Stack
15
+ </Link>
16
+
17
+ <nav className="flex items-center gap-6">
18
+ <NavLink to="/" end className={navLinkClassName}>
19
+ Home
20
+ </NavLink>
21
+ <NavLink to="/integrations" className={navLinkClassName}>
22
+ Integrations
23
+ </NavLink>
24
+ </nav>
25
+ </div>
26
+ </header>
27
+ )
28
+ }
@@ -0,0 +1,48 @@
1
+ import * as React from "react"
2
+ import { Slot } from "@radix-ui/react-slot"
3
+ import { cva } from "class-variance-authority";
4
+
5
+ import { cn } from "@/lib/utils"
6
+
7
+ const buttonVariants = cva(
8
+ "inline-flex items-center justify-center gap-2 whitespace-nowrap rounded-md text-sm font-medium transition-colors focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:pointer-events-none disabled:opacity-50 [&_svg]:pointer-events-none [&_svg]:size-4 [&_svg]:shrink-0",
9
+ {
10
+ variants: {
11
+ variant: {
12
+ default:
13
+ "bg-primary text-primary-foreground shadow hover:bg-primary/90",
14
+ destructive:
15
+ "bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90",
16
+ outline:
17
+ "border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground",
18
+ secondary:
19
+ "bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80",
20
+ ghost: "hover:bg-accent hover:text-accent-foreground",
21
+ link: "text-primary underline-offset-4 hover:underline",
22
+ },
23
+ size: {
24
+ default: "h-9 px-4 py-2",
25
+ sm: "h-8 rounded-md px-3 text-xs",
26
+ lg: "h-10 rounded-md px-8",
27
+ icon: "h-9 w-9",
28
+ },
29
+ },
30
+ defaultVariants: {
31
+ variant: "default",
32
+ size: "default",
33
+ },
34
+ }
35
+ )
36
+
37
+ const Button = React.forwardRef(({ className, variant, size, asChild = false, ...props }, ref) => {
38
+ const Comp = asChild ? Slot : "button"
39
+ return (
40
+ <Comp
41
+ className={cn(buttonVariants({ variant, size, className }))}
42
+ ref={ref}
43
+ {...props} />
44
+ );
45
+ })
46
+ Button.displayName = "Button"
47
+
48
+ export { Button, buttonVariants }
@@ -0,0 +1,50 @@
1
+ import * as React from "react"
2
+
3
+ import { cn } from "@/lib/utils"
4
+
5
+ const Card = React.forwardRef(({ className, ...props }, ref) => (
6
+ <div
7
+ ref={ref}
8
+ className={cn("rounded-xl border bg-card text-card-foreground shadow", className)}
9
+ {...props} />
10
+ ))
11
+ Card.displayName = "Card"
12
+
13
+ const CardHeader = React.forwardRef(({ className, ...props }, ref) => (
14
+ <div
15
+ ref={ref}
16
+ className={cn("flex flex-col space-y-1.5 p-6", className)}
17
+ {...props} />
18
+ ))
19
+ CardHeader.displayName = "CardHeader"
20
+
21
+ const CardTitle = React.forwardRef(({ className, ...props }, ref) => (
22
+ <div
23
+ ref={ref}
24
+ className={cn("font-semibold leading-none tracking-tight", className)}
25
+ {...props} />
26
+ ))
27
+ CardTitle.displayName = "CardTitle"
28
+
29
+ const CardDescription = React.forwardRef(({ className, ...props }, ref) => (
30
+ <div
31
+ ref={ref}
32
+ className={cn("text-sm text-muted-foreground", className)}
33
+ {...props} />
34
+ ))
35
+ CardDescription.displayName = "CardDescription"
36
+
37
+ const CardContent = React.forwardRef(({ className, ...props }, ref) => (
38
+ <div ref={ref} className={cn("p-6 pt-0", className)} {...props} />
39
+ ))
40
+ CardContent.displayName = "CardContent"
41
+
42
+ const CardFooter = React.forwardRef(({ className, ...props }, ref) => (
43
+ <div
44
+ ref={ref}
45
+ className={cn("flex items-center p-6 pt-0", className)}
46
+ {...props} />
47
+ ))
48
+ CardFooter.displayName = "CardFooter"
49
+
50
+ export { Card, CardHeader, CardFooter, CardTitle, CardDescription, CardContent }
@@ -0,0 +1,19 @@
1
+ import * as React from "react"
2
+
3
+ import { cn } from "@/lib/utils"
4
+
5
+ const Input = React.forwardRef(({ className, type, ...props }, ref) => {
6
+ return (
7
+ <input
8
+ type={type}
9
+ className={cn(
10
+ "flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-base shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
11
+ className
12
+ )}
13
+ ref={ref}
14
+ {...props} />
15
+ );
16
+ })
17
+ Input.displayName = "Input"
18
+
19
+ export { Input }
@@ -0,0 +1,16 @@
1
+ import * as React from "react"
2
+ import * as LabelPrimitive from "@radix-ui/react-label"
3
+ import { cva } from "class-variance-authority";
4
+
5
+ import { cn } from "@/lib/utils"
6
+
7
+ const labelVariants = cva(
8
+ "text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70"
9
+ )
10
+
11
+ const Label = React.forwardRef(({ className, ...props }, ref) => (
12
+ <LabelPrimitive.Root ref={ref} className={cn(labelVariants(), className)} {...props} />
13
+ ))
14
+ Label.displayName = LabelPrimitive.Root.displayName
15
+
16
+ export { Label }