Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit c74cce2

Browse files
committed
Revert "Try something"
This reverts commit 6fcce21.
1 parent 6fcce21 commit c74cce2

File tree

319 files changed

+55870
-3969
lines changed

Some content is hidden

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

319 files changed

+55870
-3969
lines changed

.env.local.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
NEXT_PUBLIC_AUTH0_ISSUER_BASE_URL=
2+
NEXT_PUBLIC_AUTH0_CLIENT_ID=

.eslintrc.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"extends": "next",
3+
"rules": {
4+
"@next/next/no-typos": "off",
5+
"react/no-unescaped-entities": "off",
6+
"@next/next/no-page-custom-font": "off"
7+
}
8+
}

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
custom: [ 'https://www.bthsrobotics.com/', 'https://bthsalumni.org/donate/' ]

.github/dependabot.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "npm" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "weekly"
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Dependency Review Action
2+
#
3+
# This Action will scan dependency manifest files that change as part of a Pull Request,
4+
# surfacing known-vulnerable versions of the packages declared or updated in the PR.
5+
# Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable
6+
# packages will be blocked from merging.
7+
#
8+
# Source repository: https://github.com/actions/dependency-review-action
9+
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement
10+
name: 'Dependency review'
11+
on:
12+
pull_request:
13+
branches: [ "main" ]
14+
15+
# If using a dependency submission action in this workflow this permission will need to be set to:
16+
#
17+
# permissions:
18+
# contents: write
19+
#
20+
# https://docs.github.com/en/enterprise-cloud@latest/code-security/supply-chain-security/understanding-your-software-supply-chain/using-the-dependency-submission-api
21+
permissions:
22+
contents: read
23+
# Write permissions for pull-requests are required for using the `comment-summary-in-pr` option, comment out if you aren't using this option
24+
pull-requests: write
25+
26+
jobs:
27+
dependency-review:
28+
runs-on: ubuntu-latest
29+
steps:
30+
- name: 'Checkout repository'
31+
uses: actions/checkout@v4
32+
- name: 'Dependency Review'
33+
uses: actions/dependency-review-action@v4
34+
# Commonly enabled options, see https://github.com/actions/dependency-review-action#configuration-options for all available options.
35+
with:
36+
comment-summary-in-pr: always
37+
# fail-on-severity: moderate
38+
# deny-licenses: GPL-1.0-or-later, LGPL-2.0-or-later
39+
# retry-on-snapshot-warnings: true

.gitignore

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
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+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# local env files
28+
.env.local
29+
30+
# vercel
31+
.vercel
32+
33+
# typescript
34+
*.tsbuildinfo
35+
next-env.d.ts
36+
37+
# Jetbrains
38+
/.idea

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"typescript.tsdk": "node_modules/typescript/lib"
3+
}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Next UI
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Next.js & NextUI Template
2+
3+
This is a template for creating applications using Next.js 13 (app directory) and NextUI (v2).
4+
5+
## Technologies Used
6+
7+
- [Next.js 13](https://nextjs.org/docs/getting-started)
8+
- [NextUI v2](https://nextui.org/)
9+
- [Tailwind CSS](https://tailwindcss.com/)
10+
- [Tailwind Variants](https://tailwind-variants.org)
11+
- [TypeScript](https://www.typescriptlang.org/)
12+
- [Framer Motion](https://www.framer.com/motion/)
13+
- [next-themes](https://github.com/pacocoursey/next-themes)
14+
15+
## How to Use
16+
17+
### Use the template with create-next-app
18+
19+
To create a new project based on this template using `create-next-app`, run the following command:
20+
21+
```bash
22+
npx create-next-app -e https://github.com/nextui-org/next-app-template
23+
```
24+
25+
### Install dependencies
26+
27+
```bash
28+
npm install
29+
```
30+
31+
### Run the development server
32+
33+
```bash
34+
npm run dev
35+
```
36+
37+
## License
38+
39+
Licensed under the [MIT license](https://github.com/nextui-org/next-app-template/blob/main/LICENSE).

_posts/how-to-donate.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: "How to Donate or help the team?"
3+
excerpt: "Learn how to donate and help the team out!"
4+
coverImage: "/team2022.png"
5+
date: "2024-04-2"
6+
author:
7+
name: Jerry
8+
picture: "/team/ze-rui-zheng.jpg"
9+
ogImage:
10+
url: "/logo.png"
11+
---
12+
13+
# How to donate
14+
___
15+
Our team appreciates both in-kind and monetary donation
16+
17+
## Online Donation
18+
Online donations can be made at [https://bthsalumni.org/donate](https://bthsalumni.org/donate)
19+
20+
> Select *`Robotics`* under `Designation`
21+
22+
![How to donate](/donation.png)
23+
24+
## Checks
25+
Checks can be mailed to:
26+
```
27+
Brooklyn Tech Alumni Foundation
28+
c/o Brooklyn Technical High School Room 1W9
29+
29 Fort Greene Place, Brooklyn NY 11227
30+
Attn: Techknights Donation
31+
```
32+
> The Brooklyn Technical Alumni foundation is a 501(c)(3) nonprofit organization. A W-9 form can be provided on request. Our tax ID is 11-2739496. All donations are tax deductible.

0 commit comments

Comments
 (0)