Skip to content

Commit fb2760a

Browse files
feat(app): add login and registration form
0 parents  commit fb2760a

File tree

93 files changed

+7291
-0
lines changed

Some content is hidden

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

93 files changed

+7291
-0
lines changed

.env

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
NEXT_PUBLIC_API_BASE_URL=http://127.0.0.1:5000

.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "next/core-web-vitals"
3+
}

.github/dependabot.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
9+
# Enable version updates for npm
10+
- package-ecosystem: "npm"
11+
# Look for `package.json` and `lock` files in the `root` directory
12+
directory: "/"
13+
# Check the npm registry for updates every day (weekdays)
14+
schedule:
15+
interval: "daily"

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
.pnpm-debug.log*
27+
28+
# local env files
29+
.env*.local
30+
31+
# vercel
32+
.vercel
33+
34+
# typescript
35+
*.tsbuildinfo
36+
next-env.d.ts

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"cSpell.words": [
3+
"cvbooking",
4+
"Formik"
5+
]
6+
}

README.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
2+
3+
[![Netlify Status](https://api.netlify.com/api/v1/badges/abea42a7-853e-4234-b7fd-103f0fbfbaaa/deploy-status)](https://app.netlify.com/sites/stellar-eclair-650610/deploys)
4+
5+
## Getting Started
6+
7+
First, run the development server:
8+
9+
```bash
10+
npm run dev
11+
# or
12+
yarn dev
13+
# or
14+
pnpm dev
15+
```
16+
17+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
18+
19+
You can start editing the page by modifying `pages/index.tsx`. The page auto-updates as you edit the file.
20+
21+
[API routes](https://nextjs.org/docs/api-routes/introduction) can be accessed on [http://localhost:3000/api/hello](http://localhost:3000/api/hello). This endpoint can be edited in `pages/api/hello.ts`.
22+
23+
The `pages/api` directory is mapped to `/api/*`. Files in this directory are treated as [API routes](https://nextjs.org/docs/api-routes/introduction) instead of React pages.
24+
25+
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
26+
27+
## Learn More
28+
29+
To learn more about Next.js, take a look at the following resources:
30+
31+
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
32+
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
33+
34+
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
35+
36+
## Deploy on Vercel
37+
38+
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
39+
40+
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.

next.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {
3+
reactStrictMode: true,
4+
}
5+
6+
module.exports = nextConfig

package.json

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
{
2+
"name": "portfolio-other",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"dev": "next dev",
7+
"build": "next build",
8+
"start": "next start",
9+
"lint": "next lint"
10+
},
11+
"dependencies": {
12+
"@next/font": "13.3.0",
13+
"@types/node": "18.15.12",
14+
"@types/react": "18.0.37",
15+
"@types/react-dom": "18.0.11",
16+
"@types/swiper": "^6.0.0",
17+
"aos": "^2.3.4",
18+
"axios": "^1.3.6",
19+
"emailjs-com": "^3.2.0",
20+
"eslint": "8.38.0",
21+
"eslint-config-next": "13.3.0",
22+
"esm": "^3.2.25",
23+
"formik": "^2.2.9",
24+
"i18n": "^0.15.1",
25+
"i18next": "^22.4.15",
26+
"i18next-browser-languagedetector": "^7.0.1",
27+
"i18next-http-backend": "^2.2.0",
28+
"next": "13.3.0",
29+
"next-translate": "^2.0.5",
30+
"prism-react-renderer": "^1.3.5",
31+
"react": "18.2.0",
32+
"react-dom": "18.2.0",
33+
"react-i18next": "^12.2.0",
34+
"react-icon": "^1.0.0",
35+
"react-icons": "^4.8.0",
36+
"react-query": "^3.39.3",
37+
"react-scroll": "^1.8.9",
38+
"react-toastify": "^9.1.2",
39+
"react-typed": "^1.2.0",
40+
"swiper": "^9.2.3",
41+
"typescript": "5.0.4",
42+
"yup": "^1.1.1"
43+
},
44+
"devDependencies": {
45+
"@types/aos": "^3.0.4",
46+
"@types/react-scroll": "^1.8.6",
47+
"autoprefixer": "^10.4.14",
48+
"postcss": "^8.4.23",
49+
"tailwindcss": "^3.3.1"
50+
}
51+
}

postcss.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
module.exports = {
2+
plugins: {
3+
tailwindcss: {},
4+
autoprefixer: {},
5+
},
6+
}

public/assets/icons/github.png

2.9 KB
Loading

0 commit comments

Comments
 (0)