diff --git a/client/src/components/Header.tsx b/client/src/components/Header.tsx index e05078fcc..c7cf1a003 100644 --- a/client/src/components/Header.tsx +++ b/client/src/components/Header.tsx @@ -34,6 +34,11 @@ const Header: FC<{}> = () => { 競争馬 +
  • + + 投票 + +
  • diff --git a/client/src/pages/vote.tsx b/client/src/pages/vote.tsx new file mode 100644 index 000000000..c63f55137 --- /dev/null +++ b/client/src/pages/vote.tsx @@ -0,0 +1,24 @@ +import { FC } from "react"; +import Head from "next/head"; + +const VotePage: FC<{}> = () => { + return ( + <> + + 投票所 | 調布競馬ポータル + + + + + + +

    投票

    +

    準備中

    + + ); +}; + +export default VotePage;