Skip to content

Commit f9168d8

Browse files
committed
commite inicial
0 parents  commit f9168d8

106 files changed

Lines changed: 14848 additions & 0 deletions

File tree

Some content is hidden

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

.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
VITE_SUPABASE_PROJECT_ID="vzkyqexugkhgeoknsthc"
2+
VITE_SUPABASE_PUBLISHABLE_KEY="eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6InZ6a3lxZXh1Z2toZ2Vva25zdGhjIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NjQxMDIzNjcsImV4cCI6MjA3OTY3ODM2N30.5jkFnAsrGNAB7CpOrGkck5AOAcnJMuurp4U5ZNZuQvA"
3+
VITE_SUPABASE_URL="https://vzkyqexugkhgeoknsthc.supabase.co"

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Sistema de Gerenciamento de Hotel
2+
3+
Um sistema para controle de hóspedes, quartos, reservas, check-in/check-out, estadias e pagamentos.
4+
5+
## Funcionalidades
6+
- Cadastro e listagem de usuários (hóspedes e administradores)
7+
- Gerenciamento de quartos (cadastro, disponibilidade, tarifas)
8+
- Reservas com datas de início e término
9+
- Registro de pagamentos
10+
11+
# instale a dependências do projeto
12+
npm i
13+
14+
# para executar o projeto
15+
npm run dev

bun.lockb

196 KB
Binary file not shown.

components.json

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

eslint.config.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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 tseslint from "typescript-eslint";
6+
7+
export default tseslint.config(
8+
{ ignores: ["dist"] },
9+
{
10+
extends: [js.configs.recommended, ...tseslint.configs.recommended],
11+
files: ["**/*.{ts,tsx}"],
12+
languageOptions: {
13+
ecmaVersion: 2020,
14+
globals: globals.browser,
15+
},
16+
plugins: {
17+
"react-hooks": reactHooks,
18+
"react-refresh": reactRefresh,
19+
},
20+
rules: {
21+
...reactHooks.configs.recommended.rules,
22+
"react-refresh/only-export-components": ["warn", { allowConstantExport: true }],
23+
"@typescript-eslint/no-unused-vars": "off",
24+
},
25+
},
26+
);

index.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!doctype html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<title>Pousada Mão Preta - Sistema de Gerenciamento Hoteleiro</title>
7+
<meta name="description" content="Sistema completo para gerenciamento de hotéis com controle de quartos, reservas, hóspedes e pagamentos" />
8+
<meta property="og:title" content="Pousada Mão Preta - Sistema de Gerenciamento Hoteleiro" />
9+
<meta property="og:description" content="Sistema completo para gerenciamento de hotéis com controle de quartos, reservas, hóspedes e pagamentos" />
10+
<meta property="og:type" content="website" />
11+
<meta property="og:image" content="https://lovable.dev/opengraph-image-p98pqg.png" />
12+
<link rel="icon" href="/favicon.ico" />
13+
</head>
14+
<body>
15+
<div id="root"></div>
16+
<script type="module" src="/src/main.tsx"></script>
17+
</body>
18+
</html>

0 commit comments

Comments
 (0)