diff --git a/src/pages/honkai3rd/weapons/[weaponId].tsx b/src/pages/honkai3rd/weapons/[weaponId].tsx index e915aa9e..c7e40e17 100644 --- a/src/pages/honkai3rd/weapons/[weaponId].tsx +++ b/src/pages/honkai3rd/weapons/[weaponId].tsx @@ -1,6 +1,7 @@ -import { Box, Heading, Image, Paragraph } from '@theme-ui/components' +import { Box, Card, Heading, Paragraph } from '@theme-ui/components' import { NextPageContext } from 'next' import React from 'react' +import SquareImageBox from '../../../components/atoms/SquareImageBox' import Breadcrumb from '../../../components/organisms/Breadcrumb' import Honkai3rdNavigator from '../../../components/organisms/Honkai3rdNavigator' import { WeaponData } from '../../../lib/honkai3rd/weapons' @@ -33,19 +34,37 @@ const WeaponShowPage = ({ weapon }: WeaponShowPageProps) => { {weapon.name} - {weapon.name} - Weapon Skills + + + {'⭐'.repeat(weapon.rarity)} + + ATK : {weapon.atk} / CRT : {weapon.crt} + + + {weapon.skills.map((skill) => { return ( - - {skill.name} - {skill.description} - + + + {skill.name} + + + {skill.description} + + ) })}