Skip to content

Commit

Permalink
feat: ロゴ追加
Browse files Browse the repository at this point in the history
  • Loading branch information
void2610 committed Oct 22, 2023
1 parent 544d045 commit 588ed05
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
Binary file added public/image/nitfc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 14 additions & 1 deletion src/components/Footer.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
import React from "react";
import { useRouter } from "next/router";

import { LinkedText } from "./LinkedText";
import "@/styles/gamingColor.css";

export const Footer = () => {
const router = useRouter();
return (
<footer>
<div
style={{
backgroundColor: "#20e0e0",
width: "100vw",
display: "flex",
flexDirection: "column",
alignItems: "center",
Expand All @@ -28,7 +32,16 @@ export const Footer = () => {
<LinkedText text={"企画"} link={"contents/schedule"} />
<LinkedText text={"露店"} link={"contents/stand"} />
</div>
<LinkedText text={"福井高専"} link={"https://www.fukui-nct.ac.jp/"} />
<img
src={"image/nitfc.png"}
alt={"nitfc_logo"}
width={"20%"}
style={{ cursor: "pointer" }}
onClick={() => {
router.push("https://www.fukui-nct.ac.jp/");
}}
/>
{/* <LinkedText text={"福井高専"} link={"https://www.fukui-nct.ac.jp/"} /> */}
<LinkedText
text={"お問い合わせ"}
link={"https://www.fukui-nct.ac.jp/"}
Expand Down

0 comments on commit 588ed05

Please sign in to comment.