Skip to content

Commit 2c2eeb3

Browse files
committed
init setup new project
1 parent 24b8455 commit 2c2eeb3

Some content is hidden

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

74 files changed

+5281
-2690
lines changed

.editorconfig

-10
This file was deleted.

.env.local

-1
This file was deleted.

.eslintrc.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": ["next", "next/core-web-vitals", "prettier"],
3+
"plugins": ["prettier"],
4+
"rules": {
5+
"prettier/prettier": "warn",
6+
"no-console": "error"
7+
}
8+
}

.gitignore

+35-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +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
120
.DS_Store
2-
.next
3-
pnpm*
4-
.yarn*
5-
*.log
6-
node_modules
7-
out
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

.prettierignore

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.next
2+
.cache
3+
package-lock.json
4+
public
5+
node_modules
6+
next-env.d.ts
7+
next.config.ts
8+
yarn.lock

.prettierrc

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "none",
4+
"arrowParens": "avoid",
5+
"proseWrap": "preserve",
6+
"quoteProps": "as-needed",
7+
"bracketSameLine": false,
8+
"bracketSpacing": true,
9+
"tabWidth": 2
10+
}

README.md

+22-38
Original file line numberDiff line numberDiff line change
@@ -1,52 +1,36 @@
1-
<p align="center">
2-
<a href="https://hammercode.org">
3-
<h1 align="center">Hammercode</h1>
4-
</a>
5-
</p>
6-
7-
<p align="center">
8-
9-
</p>
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).
102

113
## Getting Started
124

13-
Visit <a aria-label="next.js learn" href="<<<<https://nextjs.org/learn>>>>">https://nextjs.org/learn</a> to get started with Next.js.
14-
15-
## Documentation
16-
17-
Visit [https://nextjs.org/docs](https://nextjs.org/docs) to view the full documentation.
18-
19-
## Who is using Next.js?
20-
21-
Next.js is used by the world's leading companies. Check out the [Next.js Showcase](https://nextjs.org/showcase) to learn more.
22-
23-
## Community
24-
25-
The Next.js community can be found on [GitHub Discussions](https://github.com/vercel/next.js/discussions), where you can ask questions, voice ideas, and share your projects.
5+
First, run the development server:
266

27-
To chat with other community members you can join the [Next.js Discord](https://nextjs.org/discord).
7+
```bash
8+
npm run dev
9+
# or
10+
yarn dev
11+
# or
12+
pnpm dev
13+
# or
14+
bun dev
15+
```
2816

29-
Our [Code of Conduct](https://github.com/vercel/next.js/blob/canary/CODE_OF_CONDUCT.md) applies to all Next.js community channels.
17+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
3018

31-
## Contributing
19+
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
3220

33-
Please see our [contributing.md](/contributing.md).
21+
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
3422

35-
### Good First Issues
23+
## Learn More
3624

37-
We have a list of [good first issues](https://github.com/vercel/next.js/labels/good%20first%20issue) that contain bugs that have a relatively limited scope. This is a great place to get started, gain experience, and get familiar with our contribution process.
25+
To learn more about Next.js, take a look at the following resources:
3826

39-
## Authors
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.
4029

41-
- Tim Neutkens ([@timneutkens](https://twitter.com/timneutkens))
42-
- Naoyuki Kanezawa ([@nkzawa](https://twitter.com/nkzawa))
43-
- Guillermo Rauch ([@rauchg](https://twitter.com/rauchg))
44-
- Arunoda Susiripala ([@arunoda](https://twitter.com/arunoda))
45-
- Tony Kovanen ([@tonykovanen](https://twitter.com/tonykovanen))
46-
- Dan Zajdband ([@impronunciable](https://twitter.com/impronunciable))
30+
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
4731

48-
## Security
32+
## Deploy on Vercel
4933

50-
If you believe you have found a security vulnerability in Next.js, we encourage you to responsibly disclose this and not open a public issue. We will investigate all legitimate reports. Email `security@vercel.com` to disclose any security vulnerabilities.
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.
5135

52-
<https://vercel.com/security>
36+
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.

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": "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": false,
11+
"prefix": ""
12+
},
13+
"aliases": {
14+
"components": "@/components",
15+
"utils": "@/lib/utils"
16+
}
17+
}

next.config.js

-17
This file was deleted.

next.config.mjs

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {};
3+
4+
export default nextConfig;

0 commit comments

Comments
 (0)