diff --git a/src/app/home/DanakSuggestedService.tsx b/src/app/home/DanakSuggestedService.tsx
index 5e367cf..b6cab77 100644
--- a/src/app/home/DanakSuggestedService.tsx
+++ b/src/app/home/DanakSuggestedService.tsx
@@ -17,7 +17,7 @@ const DanakSuggestedService: FC = () => {
{
data?.data?.danakSuggestServices?.map((item) => {
return (
-
-
+
{data?.description}
diff --git a/src/components/ExpandableContent.tsx b/src/components/ExpandableContent.tsx
new file mode 100644
index 0000000..0ef28e9
--- /dev/null
+++ b/src/components/ExpandableContent.tsx
@@ -0,0 +1,60 @@
+'use client'
+import { FC, memo, useEffect, useRef, useState } from 'react'
+import Button from '@/components/Button'
+import { clx } from '@/helpers/utils'
+
+type Props = {
+ html: string;
+ collapsedHeightClass?: string; // e.g. 'max-h-36' for ~6 lines with leading-6
+ className?: string;
+}
+
+const ExpandableContent: FC