-
-
-
-
-
{t('officeHours.title')}
-
{t('officeHours.content')}
+
+
+
+
+
+
{t('officeHours.title')}
+
{t('officeHours.content')}
-
- {t('officeHours.button')}
-
+
+ {t('officeHours.button')}
+
+
-
-
-
-
- {t('community.title')}
- {t('community.content')}
+
-
- {featureList.map(v => (
- -
-
-
{v.label}
- {v.desc}
-
- ))}
-
-
+
+ {t('community.title')}
+ {t('community.content')}
-
-
-
{t('resource')}
-
- {resourceList.map(v => (
+
+ {featureList.map(v => (
-
-
-
-
{v.label}
-
{v.desc}
-
-
-
- {v.btnLabel}
-
-
+
+ {v.label}
+ {v.desc}
))}
-
-
+
+
+
+
+
{t('resource')}
+
+ {resourceList.map(v => (
+ -
+
+
+
{v.label}
+
{v.desc}
+
+
+
+ {v.btnLabel}
+
+
+ ))}
+
+
+
-
- {t('mail.title')}
-
- {mailList.map(v => (
-
-
- {v.label}
-
- ))}
-
-
+
+ {t('mail.title')}
+
+ {mailList.map(v => (
+
+
+ {v.label}
+
+ ))}
+
+
+
);
diff --git a/src/parts/useCase/useCaseCard/index.module.less b/src/parts/useCase/useCaseCard/index.module.less
index ead05259e..a2ae769ec 100644
--- a/src/parts/useCase/useCaseCard/index.module.less
+++ b/src/parts/useCase/useCaseCard/index.module.less
@@ -19,23 +19,11 @@
margin-bottom: 10px;
}
- .linkButton {
- display: block;
- padding: 10px 20px;
- margin: 0;
- outline: none;
- border: 1px solid #00a1ea;
- color: #00a1ea;
- text-align: center;
- font-family: 'Roboto Mono';
- font-size: 14px;
+ .startLinkButton {
+ padding: 8px 28px;
+ width: 100%;
+ .paragraph4();
font-weight: 500;
- line-height: 18px;
- border-radius: 19px;
-
- &:hover {
- border-color: #1493cc;
- color: #1493cc;
- }
+ justify-content: center;
}
}
diff --git a/src/parts/useCase/useCaseCard/index.tsx b/src/parts/useCase/useCaseCard/index.tsx
index b8262add4..3c0088cd0 100644
--- a/src/parts/useCase/useCaseCard/index.tsx
+++ b/src/parts/useCase/useCaseCard/index.tsx
@@ -1,4 +1,5 @@
import styles from './index.module.less';
+import CustomButton from '@/components/customButton';
export default function UseCaseCard({ useCase }) {
const { name, logo, description, link, cta_label } = useCase;
@@ -8,14 +9,16 @@ export default function UseCaseCard({ useCase }) {