diff --git a/.gitignore b/.gitignore
index 6f91f93..0bae137 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,17 +1,31 @@
# Dependencies
node_modules/
+.pnp
+.pnp.*
+.yarn/*
+!.yarn/patches
+!.yarn/plugins
+!.yarn/releases
+!.yarn/versions
# Build outputs
dist/
dist-ssr/
+build/
+coverage/
+.next/
+out/
*.tsbuildinfo
# Logs
*.log
+logs/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
+.pnpm-debug.log*
+lerna-debug.log*
# OS Files
.DS_Store
@@ -20,11 +34,22 @@ Thumbs.db
# IDEs and Editors
.idea/
.vscode/
+!.vscode/extensions.json
*.swp
*.swo
+*.sw?
+*.suo
+*.sln
+*.ntvs*
+*.njsproj
-# Add database
+# Database
omnia.db
# Environment Files
.env
+.env*
+*.local
+
+# Vercel
+.vercel
diff --git a/content/scenario-builder/.gitignore b/content/scenario-builder/.gitignore
deleted file mode 100644
index 5ef6a52..0000000
--- a/content/scenario-builder/.gitignore
+++ /dev/null
@@ -1,41 +0,0 @@
-# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-
-# dependencies
-/node_modules
-/.pnp
-.pnp.*
-.yarn/*
-!.yarn/patches
-!.yarn/plugins
-!.yarn/releases
-!.yarn/versions
-
-# 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*
-
-# env files (can opt-in for committing if needed)
-.env*
-
-# vercel
-.vercel
-
-# typescript
-*.tsbuildinfo
-next-env.d.ts
diff --git a/content/scenario-builder/next-env.d.ts b/content/scenario-builder/next-env.d.ts
new file mode 100644
index 0000000..9edff1c
--- /dev/null
+++ b/content/scenario-builder/next-env.d.ts
@@ -0,0 +1,6 @@
+///
+///
+import "./.next/types/routes.d.ts";
+
+// NOTE: This file should not be edited
+// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
diff --git a/web/landing/.gitignore b/web/landing/.gitignore
deleted file mode 100644
index a547bf3..0000000
--- a/web/landing/.gitignore
+++ /dev/null
@@ -1,24 +0,0 @@
-# Logs
-logs
-*.log
-npm-debug.log*
-yarn-debug.log*
-yarn-error.log*
-pnpm-debug.log*
-lerna-debug.log*
-
-node_modules
-dist
-dist-ssr
-*.local
-
-# Editor directories and files
-.vscode/*
-!.vscode/extensions.json
-.idea
-.DS_Store
-*.suo
-*.ntvs*
-*.njsproj
-*.sln
-*.sw?