Skip to content

Commit

Permalink
improve: フッタのITSロゴを画像化
Browse files Browse the repository at this point in the history
  • Loading branch information
arkwnet committed Apr 3, 2024
1 parent c6afbce commit 4ce4a21
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
Binary file added typing-app/src/assets/images/brand.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 3 additions & 9 deletions typing-app/src/components/molecules/BrandText.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,11 @@
import React from "react";
import { Box, HStack, Text } from "@chakra-ui/react";
import { Box, Image } from "@chakra-ui/react";
import brandImage from "@/assets/images/brand.png";

const BrandText: React.FC = () => {
return (
<Box>
<HStack>
<Text fontSize="50px" color={"white"}>
ITS
</Text>
<Text fontSize="20px" color={"white"}>
静岡大学ITソルーション室
</Text>
</HStack>
<Image src={brandImage.src} alt="Brand" ml={2} />
</Box>
);
};
Expand Down

0 comments on commit 4ce4a21

Please sign in to comment.