From 569eb47001710de6b72d3aa125df3dbc13ac780a Mon Sep 17 00:00:00 2001
From: Nitansh Shankar <167768158+BIJJUDAMA@users.noreply.github.com>
Date: Sun, 15 Feb 2026 11:51:50 +0530
Subject: [PATCH 1/2] fix: closed div tag
---
next-env.d.ts | 2 +-
pages/branding.tsx | 81 +++++++++++++++++++++++-----------------------
2 files changed, 42 insertions(+), 41 deletions(-)
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 @@
///
///
-import "./.next/dev/types/routes.d.ts";
+import "./.next/types/routes.d.ts";
// NOTE: This file should not be edited
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.
diff --git a/pages/branding.tsx b/pages/branding.tsx
index de176cb..95991e4 100644
--- a/pages/branding.tsx
+++ b/pages/branding.tsx
@@ -16,7 +16,7 @@ const LogoWrap = styled.div`
background-size: 30px 30px;
background-position: 0 0,45px 45px;
background-image: linear-gradient(45deg,rgba(56, 189, 248, 0.03) 25%,transparent 0,transparent 75%,rgba(56, 189, 248, 0.03) 0,rgba(56, 189, 248, 0.03)),linear-gradient(45deg,rgba(56, 189, 248, 0.03) 25%,transparent 0,transparent 75%,rgba(56, 189, 248, 0.03) 0,rgba(56, 189, 248, 0.03))
-};
+
img {
max-width: 100%;
}
@@ -49,7 +49,7 @@ const BrandingPage = () => {
{/* Starfield Background */}
-
+

@@ -68,48 +68,49 @@ const BrandingPage = () => {
-
-
-
-
-
- PNG
-
+
+
+
+
+
+
-
-
-
);
From 70c464fb9d967025747cdc0a9e8a6ab8ab4aabbd Mon Sep 17 00:00:00 2001
From: Aman Kumar Singh
Date: Sun, 15 Feb 2026 12:19:46 +0530
Subject: [PATCH 2/2] feat: Add CI
---
.env.local | 2 ++
.github/workflows/ci.yml | 35 +++++++++++++++++++++++++++++++++++
2 files changed, 37 insertions(+)
create mode 100644 .env.local
create mode 100644 .github/workflows/ci.yml
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