diff --git a/website/src/app/[lang]/[region]/(website)/(home)/(sections)/overview.tsx b/website/src/app/[lang]/[region]/(website)/(home)/(sections)/overview.tsx
index f074a7cf0..7fd1d126a 100644
--- a/website/src/app/[lang]/[region]/(website)/(home)/(sections)/overview.tsx
+++ b/website/src/app/[lang]/[region]/(website)/(home)/(sections)/overview.tsx
@@ -1,6 +1,6 @@
import { DefaultParams } from '@/app/[lang]/[region]';
import { Translator } from '@socialincome/shared/src/utils/i18n';
-import { BaseContainer, Typography } from '@socialincome/ui';
+import { BaseContainer, GLowHoverContainer, Typography } from '@socialincome/ui';
import { FontColor } from '@socialincome/ui/src/interfaces/color';
export async function Overview({ lang }: DefaultParams) {
@@ -10,36 +10,52 @@ export async function Overview({ lang }: DefaultParams) {
});
return (
-
-
- {translator.t('section-2.title-1')}
-
-
- {translator.t<{ text: string; color?: FontColor }[]>('section-2.title-2').map((title, index) => (
-
- {title.text}{' '}
-
- ))}
-
-
- {translator.t('section-2.title-3')}
-
-
- -
- {translator.t('section-2.text-3.1')}
-
- -
- {translator.t('section-2.text-3.2')}
-
-
-
- {translator.t('section-2.title-4')}
-
- {translator.t('section-2.text-4')}
-
- {translator.t('section-2.title-5')}
-
- {translator.t('section-2.text-5')}
-
+ <>
+ {/* TODO: remove the example of GlowHoverContainer usage below before merge */}
+
+
+ {translator.t('section-2.title-1')}
+
+
+ {translator.t<{ text: string; color?: FontColor }[]>('section-2.title-2').map((title, index) => (
+
+ {title.text}{' '}
+
+ ))}
+
+
+
+
+
+ {translator.t('section-2.title-1')}
+
+
+ {translator.t<{ text: string; color?: FontColor }[]>('section-2.title-2').map((title, index) => (
+
+ {title.text}{' '}
+
+ ))}
+
+
+ {translator.t('section-2.title-3')}
+
+
+ -
+ {translator.t('section-2.text-3.1')}
+
+ -
+ {translator.t('section-2.text-3.2')}
+
+
+
+ {translator.t('section-2.title-4')}
+
+ {translator.t('section-2.text-4')}
+
+ {translator.t('section-2.title-5')}
+
+ {translator.t('section-2.text-5')}
+
+ >
);
}