Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
135 changes: 68 additions & 67 deletions apps/dashboard/.gitignore
Original file line number Diff line number Diff line change
@@ -1,67 +1,68 @@
# Generated by Cargo
# will have compiled files and executables
/target/

# Generated by Tauri
# will have schema files for capabilities auto-completion
/gen/schemas


# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local
.env

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

# Generated by Cargo
# will have compiled files and executables
debug
target

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

# Generated by cargo mutants
# Contains mutation testing data
**/mutants.out*/

# RustRover
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# Generated by Cargo
# will have compiled files and executables
/target/

# Generated by Tauri
# will have schema files for capabilities auto-completion
/gen/schemas


# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# testing
/coverage

# next.js
/.next/
/out/
/dist/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local
.env

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts

# Generated by Cargo
# will have compiled files and executables
debug
target

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

# Generated by cargo mutants
# Contains mutation testing data
**/mutants.out*/

# RustRover
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea
4 changes: 2 additions & 2 deletions apps/dashboard/components.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": true,
"rsc": false,
"tsx": true,
"tailwind": {
"config": "",
"css": "app/globals.css",
"css": "src/globals.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
Expand Down
17 changes: 17 additions & 0 deletions apps/dashboard/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!doctype html>
<html lang="en" class="dark">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/icon-light-32x32.png" media="(prefers-color-scheme: light)" />
<link rel="icon" href="/icon-dark-32x32.png" media="(prefers-color-scheme: dark)" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<link rel="apple-touch-icon" href="/apple-icon.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Sistema de administración para gimnasio Mind & Body" />
<title>Mind &amp; Body - Admin Dashboard</title>
</head>
<body class="font-sans antialiased">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
19 changes: 0 additions & 19 deletions apps/dashboard/next.config.mjs

This file was deleted.

11 changes: 7 additions & 4 deletions apps/dashboard/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "next dev",
"dev": "vite",
"dev:tauri": "tauri dev",
"build": "next build",
"build": "vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint": "eslint src/",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hookform/resolvers": "^5.4.0",
"@vercel/analytics": "2.0.1",
"@tanstack/react-router": "^1.114.3",
"@radix-ui/react-accordion": "1.2.12",
"@radix-ui/react-alert-dialog": "1.1.15",
"@radix-ui/react-aspect-ratio": "1.1.8",
Expand Down Expand Up @@ -49,7 +50,6 @@
"embla-carousel-react": "8.6.0",
"input-otp": "1.4.2",
"lucide-react": "^1.16.0",
"next": "16.2.6",
"next-themes": "^0.4.6",
"react": "^19",
"react-day-picker": "10.0.1",
Expand All @@ -66,13 +66,16 @@
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.0",
"@tanstack/router-plugin": "^1.114.3",
"@types/node": "^25",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.3.4",
"postcss": "^8.5",
"tailwindcss": "^4.3.0",
"tw-animate-css": "1.4.0",
"typescript": "6.0.3",
"vite": "^6.1.0",
"@tauri-apps/cli": "^2"
}
}
2 changes: 1 addition & 1 deletion apps/dashboard/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"beforeDevCommand": "pnpm dev",
"devUrl": "http://localhost:3000",
"beforeBuildCommand": "pnpm build",
"frontendDist": "../out"
"frontendDist": "../dist"
},
"app": {
"windows": [
Expand Down
137 changes: 0 additions & 137 deletions apps/dashboard/src/app/globals.css

This file was deleted.

Loading
Loading