Skip to content

Commit cebe85c

Browse files
committed
loveable version
1 parent 272bad3 commit cebe85c

88 files changed

Lines changed: 12994 additions & 0 deletions

Some content is hidden

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

.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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-ssr
12+
*.local
13+
14+
# Editor directories and files
15+
.vscode/*
16+
!.vscode/extensions.json
17+
.idea
18+
.DS_Store
19+
*.suo
20+
*.ntvs*
21+
*.njsproj
22+
*.sln
23+
*.sw?

README.md

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# Welcome to your Lovable project
2+
3+
## Project info
4+
5+
**URL**: https://lovable.dev/projects/10d46a1a-bdad-4ecf-b2de-9cf35f177566
6+
7+
## How can I edit this code?
8+
9+
There are several ways of editing your application.
10+
11+
**Use Lovable**
12+
13+
Simply visit the [Lovable Project](https://lovable.dev/projects/10d46a1a-bdad-4ecf-b2de-9cf35f177566) and start prompting.
14+
15+
Changes made via Lovable will be committed automatically to this repo.
16+
17+
**Use your preferred IDE**
18+
19+
If you want to work locally using your own IDE, you can clone this repo and push changes. Pushed changes will also be reflected in Lovable.
20+
21+
The only requirement is having Node.js & npm installed - [install with nvm](https://github.com/nvm-sh/nvm#installing-and-updating)
22+
23+
Follow these steps:
24+
25+
```sh
26+
# Step 1: Clone the repository using the project's Git URL.
27+
git clone <YOUR_GIT_URL>
28+
29+
# Step 2: Navigate to the project directory.
30+
cd <YOUR_PROJECT_NAME>
31+
32+
# Step 3: Install the necessary dependencies.
33+
npm i
34+
35+
# Step 4: Start the development server with auto-reloading and an instant preview.
36+
npm run dev
37+
```
38+
39+
**Edit a file directly in GitHub**
40+
41+
- Navigate to the desired file(s).
42+
- Click the "Edit" button (pencil icon) at the top right of the file view.
43+
- Make your changes and commit the changes.
44+
45+
**Use GitHub Codespaces**
46+
47+
- Navigate to the main page of your repository.
48+
- Click on the "Code" button (green button) near the top right.
49+
- Select the "Codespaces" tab.
50+
- Click on "New codespace" to launch a new Codespace environment.
51+
- Edit files directly within the Codespace and commit and push your changes once you're done.
52+
53+
## What technologies are used for this project?
54+
55+
This project is built with:
56+
57+
- Vite
58+
- TypeScript
59+
- React
60+
- shadcn-ui
61+
- Tailwind CSS
62+
63+
## How can I deploy this project?
64+
65+
Simply open [Lovable](https://lovable.dev/projects/10d46a1a-bdad-4ecf-b2de-9cf35f177566) and click on Share -> Publish.
66+
67+
## Can I connect a custom domain to my Lovable project?
68+
69+
Yes, you can!
70+
71+
To connect a domain, navigate to Project > Settings > Domains and click Connect Domain.
72+
73+
Read more here: [Setting up a custom domain](https://docs.lovable.dev/tips-tricks/custom-domain#step-by-step-guide)

bun.lockb

194 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+
}

dist/IMG_0295.jpeg

4.72 MB
Loading

dist/IMG_1466.jpeg

2.07 MB
Loading

dist/IMG_1624.jpeg

4.71 MB
Loading

dist/assets/index-BPjQl_5Q.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/index-DIJNU1gF.js

Lines changed: 108 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/favicon.ico

1.12 KB
Binary file not shown.

0 commit comments

Comments
 (0)