diff --git a/.yarn/install-state.gz b/.yarn/install-state.gz
index db5901f..1ae6c89 100644
Binary files a/.yarn/install-state.gz and b/.yarn/install-state.gz differ
diff --git a/src/components/molecules/SkillCard/SkillCard.tsx b/src/components/molecules/SkillCard/SkillCard.tsx
index da523c5..340630d 100644
--- a/src/components/molecules/SkillCard/SkillCard.tsx
+++ b/src/components/molecules/SkillCard/SkillCard.tsx
@@ -32,7 +32,7 @@ const SkillCard = ({ skill }: SkillCardProps) => {
))}
-
{skill.title}
+ {skill.title}
{skill.description}
diff --git a/src/components/organisms/home/Summary.tsx b/src/components/organisms/home/Summary.tsx
index 42e490a..f5152d5 100644
--- a/src/components/organisms/home/Summary.tsx
+++ b/src/components/organisms/home/Summary.tsx
@@ -3,6 +3,7 @@ import Link from 'next/link';
import React from 'react';
import ReactMarkdown from 'react-markdown';
import reactStringReplace from 'react-string-replace';
+import rehypeRaw from 'rehype-raw';
import clsxm from '@/lib/clsxm';
@@ -77,7 +78,7 @@ const Summary = ({ homePage }: SummaryProps) => {
{introduction_2}
{introductionParts.map((introPart, id) => (
-
+
{introPart}
))}
diff --git a/src/styles/globals.css b/src/styles/globals.css
index 2684f4b..82f0edd 100644
--- a/src/styles/globals.css
+++ b/src/styles/globals.css
@@ -299,4 +299,8 @@
opacity: 0;
}
}
+
+ .strong {
+ font-weight: 550;
+ }
}
diff --git a/tailwind.config.ts b/tailwind.config.ts
index 6c76975..bac92f6 100644
--- a/tailwind.config.ts
+++ b/tailwind.config.ts
@@ -25,6 +25,9 @@ export default {
950: 'rgb(var(--tw-color-primary-950) / )',
},
dark: '#0c1018',
+ fontWeight: {
+ strong: '550',
+ },
},
keyframes: {
flicker: {