/* eslint-disable @typescript-eslint/no-explicit-any */

import styles from './btc-store.module.scss'
import { Link } from '@inertiajs/react'

const BtcStore = ({ store }: any) => {
  const { name, intro, link } = store
  return (
    <div className={styles['btc__store']}>
      <div className={styles['btc__store__header']}>
        <h1>{name}</h1>
      </div>
      <div className={styles['btc__store__body']}>
        <p>{intro}</p>
      </div>
      <Link href={`${link}`}>{`Visit ${name}`}</Link>
    </div>
  )
}

export default BtcStore
