diff --git a/app/(authenticated)/sports/[id]/page.tsx b/app/(authenticated)/sports/[id]/page.tsx
index 686ef0b..b063f4f 100644
--- a/app/(authenticated)/sports/[id]/page.tsx
+++ b/app/(authenticated)/sports/[id]/page.tsx
@@ -3,6 +3,7 @@ import {SportInfoField} from "@/components/sports/sportInfoField";
import {Accordion, AccordionSummary, AccordionDetails, Stack, Grid, Link, Typography, Breadcrumbs} from "@mui/material";
import {ButtonLarge} from "@/components/layout/buttonLarge";
import {HiChevronDown} from "react-icons/hi2";
+import CardList from "@/components/layout/cardList";
export default function SportPage() {
return(
@@ -35,6 +36,11 @@ export default function SportPage() {
Bリーグ
+
+
+
+
+
)
}
\ No newline at end of file
diff --git a/components/layout/navigation.tsx b/components/layout/navigation.tsx
index 6d9cae0..86a962f 100644
--- a/components/layout/navigation.tsx
+++ b/components/layout/navigation.tsx
@@ -1,8 +1,8 @@
'use client'
import * as React from 'react'
-import {AppBar, Box, Button, Drawer, Stack, SvgIcon, Toolbar, Typography} from "@mui/material";
+import {AppBar, Box, Button, Drawer, IconButton, Stack, SvgIcon, Toolbar, Typography} from "@mui/material";
import Image from "next/image";
-import {HiHome, HiMegaphone, HiMiniNewspaper, HiUser, HiUserGroup, HiTableCells, HiRectangleGroup, HiTrophy} from "react-icons/hi2";
+import {HiHome, HiMegaphone, HiMiniNewspaper, HiUser, HiUserGroup, HiTableCells, HiRectangleGroup, HiTrophy, HiArrowRightOnRectangle} from "react-icons/hi2";
import WiderLogo from "@/components/svg/wider";
import Link from "next/link"
@@ -162,6 +162,25 @@ export const Navigation = () => {
+
(C)2024