Skip to content

Commit 0ebb177

Browse files
committed
Everything starts with some idea
1 parent c66a6b7 commit 0ebb177

20 files changed

+1562
-301
lines changed

.eslintrc.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
{
2-
"extends": "next/core-web-vitals"
2+
"extends": ["next/core-web-vitals", "./node_modules/standard/eslintrc.json"],
3+
"rules": {
4+
"space-before-function-paren": "off"
5+
}
36
}

.prettierrc.json

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true,
4+
"jsxSingleQuote": true,
5+
"trailingComma": "none"
6+
}

README.md

+1-36
Original file line numberDiff line numberDiff line change
@@ -1,36 +1 @@
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-
## Getting Started
4-
5-
First, run the development server:
6-
7-
```bash
8-
npm run dev
9-
# or
10-
yarn dev
11-
# or
12-
pnpm dev
13-
# or
14-
bun 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 `app/page.js`. The page auto-updates as you edit the file.
20-
21-
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
22-
23-
## Learn More
24-
25-
To learn more about Next.js, take a look at the following resources:
26-
27-
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
28-
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
29-
30-
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
31-
32-
## Deploy on Vercel
33-
34-
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.
35-
36-
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
1+
## zway.app

components.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": true,
5+
"tsx": false,
6+
"tailwind": {
7+
"config": "tailwind.config.js",
8+
"css": "src/app/globals.css",
9+
"baseColor": "neutral",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/components",
15+
"utils": "@/lib/utils"
16+
}
17+
}

next.config.mjs

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
/** @type {import('next').NextConfig} */
2-
const nextConfig = {};
2+
const nextConfig = {
3+
async rewrites() {
4+
return [
5+
{
6+
source: '/:path*',
7+
destination: '/'
8+
}
9+
]
10+
},
11+
webpack: (config, { isServer }) => {
12+
if (!isServer) {
13+
config.resolve.fallback.fs = false
14+
}
15+
return config
16+
}
17+
}
318

4-
export default nextConfig;
19+
export default nextConfig

package.json

+16-4
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,27 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12+
"@monaco-editor/react": "^4.6.0",
13+
"@radix-ui/react-icons": "^1.3.0",
14+
"@radix-ui/react-tooltip": "^1.0.7",
15+
"class-variance-authority": "^0.7.0",
16+
"clsx": "^2.1.0",
17+
"js-base64": "^3.7.6",
18+
"next": "14.1.0",
1219
"react": "^18",
1320
"react-dom": "^18",
14-
"next": "14.1.0"
21+
"react-monaco-editor": "^0.55.0",
22+
"react-resizable-panels": "^2.0.3",
23+
"tailwind-merge": "^2.2.1",
24+
"tailwindcss-animate": "^1.0.7"
1525
},
1626
"devDependencies": {
1727
"autoprefixer": "^10.0.1",
18-
"postcss": "^8",
19-
"tailwindcss": "^3.3.0",
2028
"eslint": "^8",
21-
"eslint-config-next": "14.1.0"
29+
"eslint-config-next": "14.1.0",
30+
"postcss": "^8",
31+
"prettier": "^3.2.5",
32+
"standard": "^17.1.0",
33+
"tailwindcss": "^3.3.0"
2234
}
2335
}

0 commit comments

Comments
 (0)