Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# dependencies
/node_modules
.env
/.pnp
.pnp.*
.yarn/*
Expand Down
3 changes: 3 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file removed src/app/favicon.ico
Binary file not shown.
34 changes: 0 additions & 34 deletions src/app/layout.tsx

This file was deleted.

Empty file added webapp/server/utils/.gitadd
Empty file.
Empty file added webapp/src/.gitadd
Empty file.
Empty file added webapp/src/components/.gitadd
Empty file.
6 changes: 6 additions & 0 deletions webapp/src/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import "@/styles/globals.css";
import type { AppProps } from "next/app";

export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}
16 changes: 16 additions & 0 deletions webapp/src/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { Html, Head, Main, NextScript } from "next/document";

export default function Document() {
return (
<Html
lang="en"
className={`h-full antialiased`}
>
<Head />
<body className="min-h-full flex flex-col">
<Main />
<NextScript />
</body>
</Html>
);
}
Empty file added webapp/src/pages/api/.gitadd
Empty file.
Empty file added webapp/src/pages/index.js
Empty file.
File renamed without changes.
Empty file added webapp/src/styles/.gitadd
Empty file.
File renamed without changes.