diff --git a/assets/image/glints-tapjobs-logo-white-horizontal.svg b/assets/image/glints-tapjobs-logo-white-horizontal.svg
new file mode 100644
index 000000000..c5dc786fd
--- /dev/null
+++ b/assets/image/glints-tapjobs-logo-white-horizontal.svg
@@ -0,0 +1,11 @@
+
diff --git a/assets/image/glints-taploker-logo-white-horizontal.svg b/assets/image/glints-taploker-logo-white-horizontal.svg
new file mode 100644
index 000000000..f7aeb173d
--- /dev/null
+++ b/assets/image/glints-taploker-logo-white-horizontal.svg
@@ -0,0 +1,11 @@
+
diff --git a/src/General/Brand/Brand.stories.tsx b/src/General/Brand/Brand.stories.tsx
index 1eab2370c..44c49ca2a 100644
--- a/src/General/Brand/Brand.stories.tsx
+++ b/src/General/Brand/Brand.stories.tsx
@@ -15,6 +15,8 @@ export default {
'glints-white',
'glints-taploker-white',
'glints-tapjobs-white',
+ 'glints-tapjobs-white-horizontal',
+ 'glints-taploker-white-horizontal',
'glints',
'glints-tapjobs',
'glints-taploker',
diff --git a/src/General/Brand/Brand.tsx b/src/General/Brand/Brand.tsx
index ec6aebfe9..48d1c294c 100644
--- a/src/General/Brand/Brand.tsx
+++ b/src/General/Brand/Brand.tsx
@@ -10,6 +10,8 @@ import GlintsTapJobs from '../../../assets/image/glints-tapjobs-logo.svg';
import GlintsWhite from '../../../assets/image/glints-logo-white.svg';
import GlintsTapLokerWhite from '../../../assets/image/glints-taploker-logo-white.svg';
import GlintsTapJobsWhite from '../../../assets/image/glints-tapjobs-logo-white.svg';
+import GlintsTapJobsWhiteHorizontal from '../../../assets/image/glints-tapjobs-logo-white-horizontal.svg';
+import GlintsTapLokerWhiteHorizontal from '../../../assets/image/glints-taploker-logo-white-horizontal.svg';
const Brand = ({
alt,
@@ -42,6 +44,10 @@ const Brand = ({
srcAsset = GlintsTapLokerWhite;
} else if (asset === 'glints-tapjobs-white') {
srcAsset = GlintsTapJobsWhite;
+ } else if (asset === 'glints-tapjobs-white-horizontal') {
+ srcAsset = GlintsTapJobsWhiteHorizontal;
+ } else if (asset === 'glints-taploker-white-horizontal') {
+ srcAsset = GlintsTapLokerWhiteHorizontal;
} else if (asset === 'glints') {
srcAsset = Glints;
} else if (asset === 'glints-tapjobs') {