Skip to content

Commit 7ee4614

Browse files
Merge pull request #1789 from telerik/coffee-warehouse-in-nextjs
chore: add coffee warehouse nextjs app
2 parents 3b29dbd + 9cca7ec commit 7ee4614

Some content is hidden

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

64 files changed

+28680
-0
lines changed
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+
}
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+
.yarn/install-state.gz
8+
9+
# testing
10+
/coverage
11+
12+
# next.js
13+
/.next/
14+
/out/
15+
16+
# production
17+
/build
18+
19+
# misc
20+
.DS_Store
21+
*.pem
22+
23+
# debug
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
28+
# local env files
29+
.env*.local
30+
31+
# vercel
32+
.vercel
33+
34+
# typescript
35+
*.tsbuildinfo
36+
next-env.d.ts
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
This project has been released under the [Apache License, version 2.0](http://www.apache.org/licenses/LICENSE-2.0.html), the text of which is included below. This license applies ONLY to the source of this repository and does not extend to any other Kendo UI distribution or variant, or any other 3rd party libraries used in a repository. For licensing information about KendoReact, see the [License Agreements page](https://www.telerik.com/purchase/license-agreement/progress-kendoreact) at [KendoReact.com](http://www.kendoreact.com).
2+
3+
> Copyright © 2023 Progress Software Corporation and/or its subsidiaries or affiliates.
4+
5+
> Licensed under the Apache License, Version 2.0 (the "License");
6+
you may not use this file except in compliance with the License.
7+
You may obtain a copy of the License at
8+
9+
> [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
10+
11+
> Unless required by applicable law or agreed to in writing, software
12+
distributed under the License is distributed on an "AS IS" BASIS,
13+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
See the License for the specific language governing permissions and
15+
limitations under the License.
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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+
## The following KendoReact components are used in the sample application:
4+
5+
- [Data Grid](https://www.telerik.com/kendo-react-ui/components/grid/)
6+
7+
- [Chart](https://www.telerik.com/kendo-react-ui/components/chart/)
8+
9+
- [Loader](https://www.telerik.com/kendo-react-ui/components/indicators/loader/)
10+
11+
- [Skeleton](https://www.telerik.com/kendo-react-ui/components/indicators/skeleton/)
12+
13+
- [DropDownList](https://www.telerik.com/kendo-react-ui/components/dropdowns/dropdownlist/)
14+
15+
- [Drawer](https://www.telerik.com/kendo-react-ui/components/layout/drawer/)
16+
17+
- [DateRangePicker](https://www.telerik.com/kendo-react-ui/components/dateinputs/daterangepicker/)
18+
19+
20+
## Prerequisites
21+
22+
- Node.js [18.17](https://nodejs.org/en) or later.
23+
- macOS, Windows (including WSL), and Linux are supported.
24+
25+
## Installation
26+
27+
Run `npm install`
28+
29+
## Available Scripts
30+
In the project directory, you can run:
31+
32+
### `npm run dev`
33+
Runs the app in the development mode.
34+
Open http://localhost:3000 to view it in the browser.
35+
36+
### `npm run build`
37+
Build the application for production usage.
38+
39+
### `npm start`
40+
Start a Next.js production server.
41+
42+
### `npm run lint`
43+
Check for linting errors.
44+
45+
## Learn More
46+
47+
You can learn more about Next.js in their [documentation](https://nextjs.org/).
48+
49+
To learn React, check out the [React documentation](https://reactjs.org/).
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
body {
2+
margin: 0;
3+
padding: 0;
4+
list-style-type: none;
5+
}
6+
7+
html,
8+
body {
9+
&::-webkit-scrollbar {
10+
display: none;
11+
}
12+
}
13+
14+
header {
15+
background-image: url('./assets/header-bg.png');
16+
}
Lines changed: 12 additions & 0 deletions
Loading
Lines changed: 3 additions & 0 deletions
Loading
Lines changed: 5 additions & 0 deletions
Loading
72.9 KB
Loading
Lines changed: 16 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)