-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit d860de7
Showing
61 changed files
with
8,224 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "next/core-web-vitals" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
.pnpm-debug.log* | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.vercel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<h1> | ||
<div align="center"> | ||
<img alt="JOIN Logo" src=".github/brand/join-logo.png" width="700" > | ||
</div> | ||
</h1> | ||
|
||
JOIN wich stands for "**Jo**rnadas de **In**formática" is a Job Shop aimed at students in the field of computing. | ||
|
||
It's an annual event that aims to promote interaction between students from the three study cycles of this university with a strong IT component and the business world, regional or national, which has been its major employer. | ||
|
||
## Getting started | ||
|
||
To get started with this template, first install the npm dependencies: | ||
|
||
```bash | ||
npm install | ||
``` | ||
|
||
Next, run the development server: | ||
|
||
```bash | ||
npm run dev | ||
``` | ||
|
||
Finally, open [http://localhost:3000](http://localhost:3000) in your browser to view the website. | ||
|
||
## Customizing | ||
|
||
You can start editing this template by modifying the files in the `/src` folder. The site will auto-update as you edit these files. | ||
|
||
## License | ||
|
||
This site template is a commercial product and is licensed under the [Tailwind UI license](https://tailwindui.com/license). | ||
|
||
## Learn more | ||
|
||
To learn more about the technologies used in this site template, see the following resources: | ||
|
||
- [Tailwind CSS](https://tailwindcss.com/docs) - the official Tailwind CSS documentation | ||
- [Next.js](https://nextjs.org/docs) - the official Next.js documentation | ||
- [Headless UI](https://headlessui.dev) - the official Headless UI documentation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"compilerOptions": { | ||
"baseUrl": ".", | ||
"paths": { | ||
"@/*": ["src/*"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/** @type {import('next').NextConfig} */ | ||
const nextConfig = { | ||
reactStrictMode: true, | ||
experimental: { | ||
newNextLinkBehavior: true, | ||
images: { | ||
allowFutureImage: true, | ||
}, | ||
}, | ||
} | ||
|
||
module.exports = nextConfig |
Oops, something went wrong.