diff --git a/src/pages/honkai3rd/battlesuits/[battlesuitId].tsx b/src/pages/honkai3rd/battlesuits/[battlesuitId].tsx
index 2a543211..784b8e42 100644
--- a/src/pages/honkai3rd/battlesuits/[battlesuitId].tsx
+++ b/src/pages/honkai3rd/battlesuits/[battlesuitId].tsx
@@ -1,9 +1,10 @@
-import { Box, Flex, Heading, Paragraph, Text } from '@theme-ui/components'
+import { Box, Card, Flex, Heading, Paragraph, Text } from '@theme-ui/components'
import { NextPageContext } from 'next'
import Image from 'next/image'
import React from 'react'
import BattlesuitFeatureLabel from '../../../components/atoms/BattlesuitFeatureLabel'
import BattlesuitRankIcon from '../../../components/atoms/BattlesuitRankIcon'
+import PageLink from '../../../components/atoms/PageLink'
import TypeLabel from '../../../components/atoms/TypeLabel'
import ValkyrieLabel from '../../../components/atoms/ValkyrieLabel'
import Breadcrumb from '../../../components/organisms/Breadcrumb'
@@ -38,15 +39,9 @@ const BattlesuitShowPage = ({ battlesuit }: BattlesuitShowPageProps) => {
{battlesuit.name}
-
@@ -71,21 +66,42 @@ const BattlesuitShowPage = ({ battlesuit }: BattlesuitShowPageProps) => {
-
+
+
+
-
+
+
+
{battlesuit.strengths.map((strength) => {
return (
-
+
+
+
)
})}
-
+
{
return (
-
+
{skillGroup.core.name}
-
+
{heading}
+
{skillGroup.core.description}
+
{skillGroup.subskills.map((subskill) => {
return (
@@ -212,6 +220,7 @@ const BattlesuitSkillGroupCard = ({
)}
+
)
})}
-
+
)
}