[PR #393] [MERGED] Feat custom branding #457

Closed
opened 2026-03-03 11:30:03 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/dflow-sh/dflow/pull/393
Author: @pavanbhaskardev
Created: 8/8/2025
Status: Merged
Merged: 8/8/2025
Merged by: @pavanbhaskardev

Base: mainHead: feat-custom-branding


📝 Commits (10+)

  • 4ecc72a chore: added theme fields, media collection
  • 47ff7aa chore: added instructions & updated default-values to hsl
  • f956e1b chore: added theme-overriding logic
  • a64b8ff chore: added next-themes package for dark-mode support
  • 27a834b chore: added branding support
  • 63da017 chore: updated default color-palate
  • 1afc29e chore: added instructions for font-family update
  • 8bd15ce chore: updated default variables
  • 7b80801 chore: updated logo in team-invitation page
  • 68b9c6e chore: showing dFlow text when logo not attached

📊 Changes

36 files changed (+2519 additions, -73 deletions)

View changed files

📝 .gitignore (+2 -0)
📝 .vscode/settings.json (+1 -0)
📝 package.json (+2 -1)
📝 pnpm-lock.yaml (+28 -1)
public/color-palette-edit.webm (+0 -0)
public/font-edit.webm (+0 -0)
src/actions/branding/index.ts (+36 -0)
📝 src/app/(frontend)/(dashboard)/[organisation]/layout.tsx (+13 -13)
📝 src/app/(frontend)/globals.css (+12 -1)
📝 src/app/(frontend)/layout.tsx (+110 -25)
📝 src/app/(payload)/custom.scss (+100 -0)
📝 src/app/(payload)/payload-admin/importMap.js (+8 -0)
src/components/Branding.tsx (+205 -0)
src/components/Logo.tsx (+67 -0)
src/components/ToggleTheme.tsx (+40 -0)
📝 src/components/invite/index.tsx (+10 -8)
📝 src/components/nav-user.tsx (+0 -1)
📝 src/components/sign-in/SignInForm.tsx (+4 -7)
📝 src/components/sign-up/SignUpForm.tsx (+4 -7)
📝 src/components/ui/button.tsx (+1 -1)

...and 16 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/dflow-sh/dflow/pull/393 **Author:** [@pavanbhaskardev](https://github.com/pavanbhaskardev) **Created:** 8/8/2025 **Status:** ✅ Merged **Merged:** 8/8/2025 **Merged by:** [@pavanbhaskardev](https://github.com/pavanbhaskardev) **Base:** `main` ← **Head:** `feat-custom-branding` --- ### 📝 Commits (10+) - [`4ecc72a`](https://github.com/dflow-sh/dflow/commit/4ecc72add88774fdf9dcdfb86ce8696043413aa8) chore: added theme fields, media collection - [`47ff7aa`](https://github.com/dflow-sh/dflow/commit/47ff7aa1d9eb73670189df76007d72464fd23312) chore: added instructions & updated default-values to hsl - [`f956e1b`](https://github.com/dflow-sh/dflow/commit/f956e1b6a55b16da34a4e59ae4d576ac9d0ae880) chore: added theme-overriding logic - [`a64b8ff`](https://github.com/dflow-sh/dflow/commit/a64b8ff85824cc0056159cff41197c6f8206440e) chore: added next-themes package for dark-mode support - [`27a834b`](https://github.com/dflow-sh/dflow/commit/27a834b5a06cf28cd6ccbdcf8b7dae6a1ecc90d7) chore: added branding support - [`63da017`](https://github.com/dflow-sh/dflow/commit/63da0176b4c70973616b3d1752d0ff2c49022d65) chore: updated default color-palate - [`1afc29e`](https://github.com/dflow-sh/dflow/commit/1afc29ee619550b86aa0f6e5b182ad070a9d78b6) chore: added instructions for font-family update - [`8bd15ce`](https://github.com/dflow-sh/dflow/commit/8bd15cea001fbdb9116fed4e9edef16c41daadbb) chore: updated default variables - [`7b80801`](https://github.com/dflow-sh/dflow/commit/7b80801a1db9b92d42699c8b89d7d45156f6e37b) chore: updated logo in team-invitation page - [`68b9c6e`](https://github.com/dflow-sh/dflow/commit/68b9c6ea6019092eb65ad440281487c85aa6508e) chore: showing dFlow text when logo not attached ### 📊 Changes **36 files changed** (+2519 additions, -73 deletions) <details> <summary>View changed files</summary> 📝 `.gitignore` (+2 -0) 📝 `.vscode/settings.json` (+1 -0) 📝 `package.json` (+2 -1) 📝 `pnpm-lock.yaml` (+28 -1) ➕ `public/color-palette-edit.webm` (+0 -0) ➕ `public/font-edit.webm` (+0 -0) ➕ `src/actions/branding/index.ts` (+36 -0) 📝 `src/app/(frontend)/(dashboard)/[organisation]/layout.tsx` (+13 -13) 📝 `src/app/(frontend)/globals.css` (+12 -1) 📝 `src/app/(frontend)/layout.tsx` (+110 -25) 📝 `src/app/(payload)/custom.scss` (+100 -0) 📝 `src/app/(payload)/payload-admin/importMap.js` (+8 -0) ➕ `src/components/Branding.tsx` (+205 -0) ➕ `src/components/Logo.tsx` (+67 -0) ➕ `src/components/ToggleTheme.tsx` (+40 -0) 📝 `src/components/invite/index.tsx` (+10 -8) 📝 `src/components/nav-user.tsx` (+0 -1) 📝 `src/components/sign-in/SignInForm.tsx` (+4 -7) 📝 `src/components/sign-up/SignUpForm.tsx` (+4 -7) 📝 `src/components/ui/button.tsx` (+1 -1) _...and 16 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-03 11:30:03 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/dflow#457
No description provided.