diff --git a/frontend/src/components/common/branding/branding.module.scss b/frontend/src/components/common/custom-branding/branding.module.scss
similarity index 67%
rename from frontend/src/components/common/branding/branding.module.scss
rename to frontend/src/components/common/custom-branding/branding.module.scss
index e12f4ce82..f4823f262 100644
--- a/frontend/src/components/common/branding/branding.module.scss
+++ b/frontend/src/components/common/custom-branding/branding.module.scss
@@ -1,5 +1,5 @@
/*
- * SPDX-FileCopyrightText: 2021 The HedgeDoc developers (see AUTHORS file)
+ * SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
diff --git a/frontend/src/components/common/branding/branding.tsx b/frontend/src/components/common/custom-branding/custom-branding.tsx
similarity index 94%
rename from frontend/src/components/common/branding/branding.tsx
rename to frontend/src/components/common/custom-branding/custom-branding.tsx
index 32073648f..8d5c2b1b0 100644
--- a/frontend/src/components/common/branding/branding.tsx
+++ b/frontend/src/components/common/custom-branding/custom-branding.tsx
@@ -20,7 +20,7 @@ export interface BrandingProps {
* @param inline If the logo should be using the inline-size or the regular-size css class.
* @param delimiter If the delimiter between the HedgeDoc logo and the branding should be shown.
*/
-export const Branding: React.FC = ({ inline = false, delimiter = true }) => {
+export const CustomBranding: React.FC = ({ inline = false, delimiter = true }) => {
const branding = useFrontendConfig().branding
const showBranding = !!branding.name || !!branding.logo
diff --git a/frontend/src/components/editor-page/app-bar/navbar-branding.tsx b/frontend/src/components/editor-page/app-bar/navbar-branding.tsx
index f7ec49436..ec2588f38 100644
--- a/frontend/src/components/editor-page/app-bar/navbar-branding.tsx
+++ b/frontend/src/components/editor-page/app-bar/navbar-branding.tsx
@@ -1,10 +1,10 @@
/*
- * SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
+ * SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
import { useDarkModeState } from '../../../hooks/dark-mode/use-dark-mode-state'
-import { Branding } from '../../common/branding/branding'
+import { CustomBranding } from '../../common/custom-branding/custom-branding'
import {
HedgeDocLogoSize,
HedgeDocLogoType,
@@ -27,7 +27,7 @@ export const NavbarBranding: React.FC = () => {
logoType={darkModeActivated ? HedgeDocLogoType.WB_HORIZONTAL : HedgeDocLogoType.BW_HORIZONTAL}
size={HedgeDocLogoSize.SMALL}
/>
-
+
)
diff --git a/frontend/src/pages/intro.tsx b/frontend/src/pages/intro.tsx
index 3238acce9..87a25de9d 100644
--- a/frontend/src/pages/intro.tsx
+++ b/frontend/src/pages/intro.tsx
@@ -1,9 +1,9 @@
/*
- * SPDX-FileCopyrightText: 2022 The HedgeDoc developers (see AUTHORS file)
+ * SPDX-FileCopyrightText: 2023 The HedgeDoc developers (see AUTHORS file)
*
* SPDX-License-Identifier: AGPL-3.0-only
*/
-import { Branding } from '../components/common/branding/branding'
+import { CustomBranding } from '../components/common/custom-branding/custom-branding'
import {
HedgeDocLogoSize,
HedgeDocLogoType,
@@ -32,7 +32,7 @@ const IntroPage: NextPage = () => {
-
+