diff --git a/apps/browser-rendering b/apps/browser-rendering
index 3119b29f..b37c9623 160000
--- a/apps/browser-rendering
+++ b/apps/browser-rendering
@@ -1 +1 @@
-Subproject commit 3119b29faa3342a0e6465793c9649ff6176459b4
+Subproject commit b37c962365a36cf342a31a196f4908f4f1343553
diff --git a/apps/web-v2/.eslintrc.json b/apps/web-v2/.eslintrc.json
new file mode 100644
index 00000000..abd7bea7
--- /dev/null
+++ b/apps/web-v2/.eslintrc.json
@@ -0,0 +1,7 @@
+{
+ "extends": [
+ "next/core-web-vitals",
+ "plugin:eslint-plugin-next-on-pages/recommended"
+ ],
+ "plugins": ["eslint-plugin-next-on-pages"]
+}
diff --git a/apps/web-v2/.gitignore b/apps/web-v2/.gitignore
new file mode 100644
index 00000000..c213988d
--- /dev/null
+++ b/apps/web-v2/.gitignore
@@ -0,0 +1,40 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+.yarn/install-state.gz
+
+# testing
+/coverage
+
+# next.js
+/.next/
+/out/
+
+# production
+/build
+
+# misc
+.DS_Store
+*.pem
+
+# debug
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# local env files
+.env*.local
+
+# vercel
+.vercel
+
+# typescript
+*.tsbuildinfo
+next-env.d.ts
+
+# wrangler files
+.wrangler
+.dev.vars
diff --git a/apps/web-v2/README.md b/apps/web-v2/README.md
new file mode 100644
index 00000000..64c8f3bc
--- /dev/null
+++ b/apps/web-v2/README.md
@@ -0,0 +1,70 @@
+This is a [Next.js](https://nextjs.org/) project bootstrapped with [`c3`](https://developers.cloudflare.com/pages/get-started/c3).
+
+## Getting Started
+
+First, run the development server:
+
+```bash
+npm run dev
+# or
+yarn dev
+# or
+pnpm dev
+# or
+bun dev
+```
+
+Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
+
+## Cloudflare integration
+
+Besides the `dev` script mentioned above `c3` has added a few extra scripts that allow you to integrate the application with the [Cloudflare Pages](https://pages.cloudflare.com/) environment, these are:
+
+- `pages:build` to build the application for Pages using the [`@cloudflare/next-on-pages`](https://github.com/cloudflare/next-on-pages) CLI
+- `preview` to locally preview your Pages application using the [Wrangler](https://developers.cloudflare.com/workers/wrangler/) CLI
+- `deploy` to deploy your Pages application using the [Wrangler](https://developers.cloudflare.com/workers/wrangler/) CLI
+
+> **Note:** while the `dev` script is optimal for local development you should preview your Pages application as well (periodically or before deployments) in order to make sure that it can properly work in the Pages environment (for more details see the [`@cloudflare/next-on-pages` recommended workflow](https://github.com/cloudflare/next-on-pages/blob/05b6256/internal-packages/next-dev/README.md#recommended-workflow))
+
+### Bindings
+
+Cloudflare [Bindings](https://developers.cloudflare.com/pages/functions/bindings/) are what allows you to interact with resources available in the Cloudflare Platform.
+
+You can use bindings during development, when previewing locally your application and of course in the deployed application:
+
+- To use bindings in dev mode you need to define them in the `next.config.js` file under `setupDevBindings`, this mode uses the `next-dev` `@cloudflare/next-on-pages` submodule. For more details see its [documentation](https://github.com/cloudflare/next-on-pages/blob/05b6256/internal-packages/next-dev/README.md).
+
+- To use bindings in the preview mode you need to add them to the `pages:preview` script accordingly to the `wrangler pages dev` command. For more details see its [documentation](https://developers.cloudflare.com/workers/wrangler/commands/#dev-1) or the [Pages Bindings documentation](https://developers.cloudflare.com/pages/functions/bindings/).
+
+- To use bindings in the deployed application you will need to configure them in the Cloudflare [dashboard](https://dash.cloudflare.com/). For more details see the [Pages Bindings documentation](https://developers.cloudflare.com/pages/functions/bindings/).
+
+#### KV Example
+
+`c3` has added for you an example showing how you can use a KV binding.
+
+In order to enable the example:
+
+- Search for javascript/typescript lines containing the following comment:
+ ```ts
+ // KV Example:
+ ```
+ and uncomment the commented lines below it.
+- Do the same in the `wrangler.toml` file, where
+ the comment is:
+ ```
+ # KV Example:
+ ```
+- If you're using TypeScript run the `cf-typegen` script to update the `env.d.ts` file:
+ ```bash
+ npm run cf-typegen
+ # or
+ yarn cf-typegen
+ # or
+ pnpm cf-typegen
+ # or
+ bun cf-typegen
+ ```
+
+After doing this you can run the `dev` or `preview` script and visit the `/api/hello` route to see the example in action.
+
+Finally, if you also want to see the example work in the deployed application make sure to add a `MY_KV_NAMESPACE` binding to your Pages application in its [dashboard kv bindings settings section](https://dash.cloudflare.com/?to=/:account/pages/view/:pages-project/settings/functions#kv_namespace_bindings_section). After having configured it make sure to re-deploy your application.
diff --git a/apps/web-v2/env.d.ts b/apps/web-v2/env.d.ts
new file mode 100644
index 00000000..a0e1d952
--- /dev/null
+++ b/apps/web-v2/env.d.ts
@@ -0,0 +1,4 @@
+// Generated by Wrangler
+// by running `wrangler types --env-interface CloudflareEnv env.d.ts`
+
+interface CloudflareEnv {}
diff --git a/apps/web-v2/next.config.mjs b/apps/web-v2/next.config.mjs
new file mode 100644
index 00000000..b0c1476c
--- /dev/null
+++ b/apps/web-v2/next.config.mjs
@@ -0,0 +1,13 @@
+import { setupDevPlatform } from "@cloudflare/next-on-pages/next-dev";
+
+// Here we use the @cloudflare/next-on-pages next-dev module to allow us to use bindings during local development
+// (when running the application with `next dev`), for more information see:
+// https://github.com/cloudflare/next-on-pages/blob/5712c57ea7/internal-packages/next-dev/README.md
+if (process.env.NODE_ENV === "development") {
+ await setupDevPlatform();
+}
+
+/** @type {import('next').NextConfig} */
+const nextConfig = {};
+
+export default nextConfig;
diff --git a/apps/web-v2/package.json b/apps/web-v2/package.json
new file mode 100644
index 00000000..4910e3b3
--- /dev/null
+++ b/apps/web-v2/package.json
@@ -0,0 +1,36 @@
+{
+ "name": "web-v2",
+ "version": "0.1.0",
+ "private": true,
+ "scripts": {
+ "dev": "next dev",
+ "build": "next build",
+ "start": "next start",
+ "lint": "next lint",
+ "pages:build": "bunx @cloudflare/next-on-pages",
+ "preview": "bun pages:build && wrangler pages dev",
+ "deploy": "bun pages:build && wrangler pages deploy",
+ "cf-typegen": "wrangler types --env-interface CloudflareEnv env.d.ts"
+ },
+ "dependencies": {
+ "react": "^18",
+ "react-dom": "^18",
+ "next": "14.1.0"
+ },
+ "devDependencies": {
+ "@cloudflare/next-on-pages": "1",
+ "@cloudflare/workers-types": "^4.20240512.0",
+ "@types/node": "^20",
+ "@types/react": "^18",
+ "@types/react-dom": "^18",
+ "autoprefixer": "^10.0.1",
+ "eslint": "^8",
+ "eslint-config-next": "14.1.0",
+ "eslint-plugin-next-on-pages": "^1.11.3",
+ "postcss": "^8",
+ "tailwindcss": "^3.3.0",
+ "typescript": "^5",
+ "vercel": "^34.2.0",
+ "wrangler": "^3.57.0"
+ }
+}
diff --git a/apps/web-v2/postcss.config.js b/apps/web-v2/postcss.config.js
new file mode 100644
index 00000000..12a703d9
--- /dev/null
+++ b/apps/web-v2/postcss.config.js
@@ -0,0 +1,6 @@
+module.exports = {
+ plugins: {
+ tailwindcss: {},
+ autoprefixer: {},
+ },
+};
diff --git a/apps/web-v2/public/images/carousel-illustration-01.png b/apps/web-v2/public/images/carousel-illustration-01.png
new file mode 100644
index 00000000..13ecb109
Binary files /dev/null and b/apps/web-v2/public/images/carousel-illustration-01.png differ
diff --git a/apps/web-v2/public/images/feature-illustration.png b/apps/web-v2/public/images/feature-illustration.png
new file mode 100644
index 00000000..60d98263
Binary files /dev/null and b/apps/web-v2/public/images/feature-illustration.png differ
diff --git a/apps/web-v2/public/landing-bg-1.svg b/apps/web-v2/public/landing-bg-1.svg
new file mode 100644
index 00000000..4154dade
--- /dev/null
+++ b/apps/web-v2/public/landing-bg-1.svg
@@ -0,0 +1,12 @@
+
diff --git a/apps/web-v2/public/landing-bg-2.svg b/apps/web-v2/public/landing-bg-2.svg
new file mode 100644
index 00000000..4d0020e1
--- /dev/null
+++ b/apps/web-v2/public/landing-bg-2.svg
@@ -0,0 +1,12 @@
+
diff --git a/apps/web-v2/public/landing-ui-2.png b/apps/web-v2/public/landing-ui-2.png
new file mode 100644
index 00000000..956da910
Binary files /dev/null and b/apps/web-v2/public/landing-ui-2.png differ
diff --git a/apps/web-v2/public/landing-ui.svg b/apps/web-v2/public/landing-ui.svg
new file mode 100644
index 00000000..43e64a70
--- /dev/null
+++ b/apps/web-v2/public/landing-ui.svg
@@ -0,0 +1,74 @@
+
diff --git a/apps/web-v2/public/logo.svg b/apps/web-v2/public/logo.svg
new file mode 100644
index 00000000..6081634d
--- /dev/null
+++ b/apps/web-v2/public/logo.svg
@@ -0,0 +1,4 @@
+
\ No newline at end of file
diff --git a/apps/web-v2/src/app/(landing)/EmailInput.tsx b/apps/web-v2/src/app/(landing)/EmailInput.tsx
new file mode 100644
index 00000000..5dd51678
--- /dev/null
+++ b/apps/web-v2/src/app/(landing)/EmailInput.tsx
@@ -0,0 +1,16 @@
+import React from "react";
+
+function EmailInput() {
+ return (
+