Skip to content

Commit

Permalink
Switch to typescript and add Dark Mode
Browse files Browse the repository at this point in the history
  • Loading branch information
maxslarsson committed Sep 25, 2024
1 parent a7a137b commit 35f0ed2
Show file tree
Hide file tree
Showing 26 changed files with 1,487 additions and 1,163 deletions.
2 changes: 1 addition & 1 deletion ground-server/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"extends": "next/core-web-vitals"
"extends": ["next/core-web-vitals", "next/typescript"]
}
22 changes: 0 additions & 22 deletions ground-server/Dockerfile

This file was deleted.

10 changes: 5 additions & 5 deletions ground-server/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
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).
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).

## Getting Started

Expand All @@ -16,9 +16,9 @@ bun dev

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file.
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.

This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.

## Learn More

Expand All @@ -27,10 +27,10 @@ To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

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

## Deploy on Vercel

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.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
27 changes: 0 additions & 27 deletions ground-server/app/globals.css

This file was deleted.

42 changes: 0 additions & 42 deletions ground-server/app/grpc/commandClient.js

This file was deleted.

28 changes: 0 additions & 28 deletions ground-server/app/grpc/page.js

This file was deleted.

30 changes: 0 additions & 30 deletions ground-server/app/layout.js

This file was deleted.

101 changes: 0 additions & 101 deletions ground-server/app/page.js

This file was deleted.

20 changes: 20 additions & 0 deletions ground-server/components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/app/globals.css",
"baseColor": "zinc",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
}
}
7 changes: 0 additions & 7 deletions ground-server/jsconfig.json

This file was deleted.

Loading

0 comments on commit 35f0ed2

Please sign in to comment.