-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 048c122
Showing
59 changed files
with
1,236 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
.yarn/install-state.gz | ||
|
||
# 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 | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
next-env.d.ts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Copyright 2024 Arthur Bonfim | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
<p align="center"> | ||
<img src="./public/assets/page.gif.gif"> | ||
</p> | ||
|
||
<h1 align='center'> | ||
<p>Restaurant menu🍲</p> | ||
</h1> | ||
|
||
|
||
<h2 align="center"> | ||
<p>From classic dishes to surprising creations, our menu is a refinement of refined flavors!</p> | ||
<a href="https://restaurant-menu-ten-bice.vercel.app/"'> | ||
See the page! | ||
</a> | ||
</h2> | ||
|
||
## 🥘 About | ||
Welcome to the Restaurant Menu repository! This project is a web application designed to manage and display a restaurant's menu in an intuitive and interactive way. Here, you will find all the information needed to understand, set up, and contribute to the development of this application. | ||
|
||
## 🦐 Features | ||
- **Menu Viewing**: Displays dishes organized by categories, with detailed descriptions, prices, and images. | ||
- **Search and Filters**: Tools for searching and filtering to easily find specific dishes. | ||
|
||
## 🔨 Tools | ||
- [Next.js](https://nextjs.org/) | ||
- [HTML](https://developer.mozilla.org/en-US/docs/Web/HTML) | ||
- [CSS](https://developer.mozilla.org/pt-BR/docs/Web/CSS) | ||
- [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript) | ||
|
||
## 🔴 How to Contribute | ||
```bash | ||
#Clone the project | ||
$ git clone https://github.com/arthurbonfim/restaurant-menu | ||
``` | ||
```bash | ||
#Enter the directory | ||
$ cd restaurant-menu | ||
``` | ||
```bash | ||
#Install the dependencies | ||
$ npm install | ||
``` | ||
## 📜 License | ||
This project is under the MIT license. See the file [LICENSE](LICENSE.md) for more details. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{ | ||
"compilerOptions": { | ||
"paths": { | ||
"@/*": ["./src/*"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = {}; | ||
|
||
export default nextConfig; |
Oops, something went wrong.