diff --git a/src/docs/en/intro.md b/src/docs/en/intro.md
index 6fd7b8da..2894a17a 100644
--- a/src/docs/en/intro.md
+++ b/src/docs/en/intro.md
@@ -31,9 +31,7 @@ function Page() {
### Rendering Arrays with Specific Separators
-
-
-
+::: code-group
```tsx [without-react-simplikit.tsx]
const texts = ['hello', 'react', 'world'];
@@ -53,10 +51,6 @@ function Page() {
}
```
-
-
-
-
```tsx [without-react-simplikit.tsx]
const texts = ['hello', 'react', 'world'];
@@ -70,9 +64,7 @@ function Page() {
);
}
```
-
-
-
+:::
## Minimizing Unintended Behavior and Bugs with Concise Implementation
diff --git a/src/docs/ko/intro.md b/src/docs/ko/intro.md
index 43c2b116..23c029d7 100644
--- a/src/docs/ko/intro.md
+++ b/src/docs/ko/intro.md
@@ -31,9 +31,7 @@ function Page() {
### 특정 요소로 구분하여 배열 렌더링하기
-
-
-
+::: code-group
```tsx [without-react-simplikit.tsx]
const texts = ['hello', 'react', 'world'];
@@ -53,10 +51,6 @@ function Page() {
}
```
-
-
-
-
```tsx [without-react-simplikit.tsx]
const texts = ['hello', 'react', 'world'];
@@ -70,9 +64,7 @@ function Page() {
);
}
```
-
-
-
+:::
## 간결한 구현으로, 의도하지 않은 동작이나 버그를 최소화해요