Skip to content

Commit 6145cac

Browse files
init
1 parent ce23365 commit 6145cac

Some content is hidden

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

95 files changed

+10208
-14937
lines changed

docs/.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+
}

docs/.gitignore

Lines changed: 27 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,36 @@
1-
# Dependencies
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
24
/node_modules
5+
/.pnp
6+
.pnp.js
7+
.yarn/install-state.gz
38

4-
# Production
5-
/build
9+
# testing
10+
/coverage
611

7-
# Generated files
8-
.docusaurus
9-
.cache-loader
12+
# next.js
13+
/.next/
14+
/out/
15+
16+
# production
17+
/build
1018

11-
# Misc
19+
# misc
1220
.DS_Store
13-
.env.local
14-
.env.development.local
15-
.env.test.local
16-
.env.production.local
21+
*.pem
1722

23+
# debug
1824
npm-debug.log*
1925
yarn-debug.log*
2026
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

docs/README.md

Lines changed: 22 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,36 @@
1-
# Website
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).
22

3-
This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator.
3+
## Getting Started
44

5-
### Installation
5+
First, run the development server:
66

7-
```
8-
$ yarn
7+
```bash
8+
npm run dev
9+
# or
10+
yarn dev
11+
# or
12+
pnpm dev
13+
# or
14+
bun dev
915
```
1016

11-
### Local Development
17+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
1218

13-
```
14-
$ yarn start
15-
```
19+
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
1620

17-
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
21+
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
1822

19-
### Build
23+
## Learn More
2024

21-
```
22-
$ yarn build
23-
```
25+
To learn more about Next.js, take a look at the following resources:
2426

25-
This command generates static content into the `build` directory and can be served using any static contents hosting service.
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.
2629

27-
### Deployment
30+
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
2831

29-
Using SSH:
32+
## Deploy on Vercel
3033

31-
```
32-
$ USE_SSH=true yarn deploy
33-
```
34-
35-
Not using SSH:
36-
37-
```
38-
$ GIT_USER=<Your GitHub username> yarn deploy
39-
```
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.
4035

41-
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.
36+
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.

docs/babel.config.js

Lines changed: 0 additions & 3 deletions
This file was deleted.

docs/blog/2019-05-28-first-blog-post.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

docs/blog/2019-05-29-long-blog-post.md

Lines changed: 0 additions & 44 deletions
This file was deleted.

docs/blog/2021-08-01-mdx-blog-post.mdx

Lines changed: 0 additions & 20 deletions
This file was deleted.
Binary file not shown.

docs/blog/2021-08-26-welcome/index.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

docs/blog/authors.yml

Lines changed: 0 additions & 17 deletions
This file was deleted.

docs/blog/tags.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

docs/components.json

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

docs/docs/intro.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)