diff --git a/.env.local b/.env.local
new file mode 100644
index 0000000..eae8fd1
--- /dev/null
+++ b/.env.local
@@ -0,0 +1,2 @@
+NEXT_PUBLIC_EVENT_ID=
+EVENT_ID=
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..4c43087
--- /dev/null
+++ b/.github/workflows/ci.yml
@@ -0,0 +1,35 @@
+name: Build Pipeline
+
+on:
+ push:
+ branches:
+ - develop
+ pull_request:
+ branches:
+ - main
+
+jobs:
+ build:
+ name: Build Project
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+
+ - name: Setup Node.js
+ uses: actions/setup-node@v4
+ with:
+ node-version: 20
+ cache: npm
+
+ - name: Install dependencies
+ run: npm ci
+
+ - name: Inject environment values
+ run: |
+ echo "NEXT_PUBLIC_EVENT_ID=inctf" > .env.local
+ echo "EVENT_ID=inctf" >> .env.local
+
+ - name: Build project
+ run: npm run build
diff --git a/next-env.d.ts b/next-env.d.ts
index 7996d35..1970904 100644
--- a/next-env.d.ts
+++ b/next-env.d.ts
@@ -1,6 +1,6 @@
///
@@ -68,48 +68,49 @@ const BrandingPage = () => {