Skip to content

Commit 6287527

Browse files
author
Ryan Hodge
committed
Moved files to top level
1 parent d7a7ef8 commit 6287527

File tree

324 files changed

+7991
-30470
lines changed

Some content is hidden

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

324 files changed

+7991
-30470
lines changed

.env.development

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

.eslintignore

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

.gitignore

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,39 @@
33
# dependencies
44
/node_modules
55
/.pnp
6-
.pnp.js
6+
.pnp.*
7+
.yarn/*
8+
!.yarn/patches
9+
!.yarn/plugins
10+
!.yarn/releases
11+
!.yarn/versions
712

813
# testing
914
/coverage
1015

16+
# next.js
17+
/.next/
18+
/out/
19+
20+
# production
21+
/build
22+
1123
# misc
12-
**/.DS_Store
13-
.env.local
14-
.env.development.local
15-
.env.test.local
16-
.env.production.local
24+
.DS_Store
25+
*.pem
1726

27+
# debug
1828
npm-debug.log*
1929
yarn-debug.log*
2030
yarn-error.log*
31+
.pnpm-debug.log*
32+
33+
# env files (can opt-in for committing if needed)
34+
.env*
35+
36+
# vercel
37+
.vercel
2138

22-
/build
39+
# typescript
40+
*.tsbuildinfo
41+
next-env.d.ts

.vscode/launch.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@
1010
"name": "Launch Chrome against localhost",
1111
"url": "http://localhost:3000",
1212
"webRoot": "${workspaceFolder}"
13+
},
14+
{
15+
"name": "Next.js: debug server-side",
16+
"type": "node-terminal",
17+
"request": "launch",
18+
"command": "npm run dev",
19+
"sourceMaps": true,
20+
"sourceMapPathOverrides": {
21+
"/turbopack/[project]/*": "${webRoot}/*"
22+
}
1323
}
1424
]
1525
}

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"cSpell.words": [
33
"browserslist",
44
"camelcase",
5-
"linebreak"
5+
"linebreak",
6+
"rocksat"
67
],
78
"files.associations": {
89
"*.css": "tailwindcss"

README.md

Lines changed: 22 additions & 67 deletions

app/ballooning/page.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import BallooningPage from '@components/ballooning/BallooningPage'
2+
import React from 'react'
3+
4+
export default function Robotics (): React.ReactElement {
5+
return (<BallooningPage/>)
6+
}

templerobotics.github.io/app/ballooning/page.tsx renamed to app/events/page.tsx

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1+
import EventsPage from '@components/events/EventsPage'
12
import React from 'react'
23

34
export default function Robotics (): React.ReactElement {
4-
return (
5-
<div>
6-
Ballooning page
7-
</div>
8-
)
5+
return (<EventsPage/>)
96
}
File renamed without changes.

0 commit comments

Comments
 (0)