minerva-juppiter-home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit eed3993280abef18cc440230bc28d04d94199f68
parent aa991bb14eee65ccc5152dff306361aa7ace69b6
Author: minerva-jupiter <ryouturn@gmail.com>
Date:   Sat, 21 Dec 2024 18:58:58 +0900

update blog and dessapointed

Diffstat:
Msrc/Blog.tsx | 12+++++++++++-
Msrc/Schedule.tsx | 2++
Msrc/Works.tsx | 2++
3 files changed, 15 insertions(+), 1 deletion(-)

diff --git a/src/Blog.tsx b/src/Blog.tsx @@ -4,13 +4,23 @@ import { Card, Container } from 'react-bootstrap'; const Blog = () => { return( <Container className='text-center'> + <br /> <h1 style={{color:'white'}}>Blog</h1> + <br /> + <Card> + <Card.Title> + カバンを自作する記事を書きました + </Card.Title> + <Card.Body> + 島根大学ものづくり部が発行する、2024年度の部誌に「PCカバン設計のすゝめ」という記事を寄稿させていただきました。 + </Card.Body> + </Card> <Card> <Card.Title> 自分のウェブページを作ってみた </Card.Title> <Card.Body> - このページを作成したときのブログです。 + このページを作成したときのブログです。<br /> Vite + Typescript + react + react-bootstrapでWebページを作ってみました。 </Card.Body> </Card> diff --git a/src/Schedule.tsx b/src/Schedule.tsx @@ -5,7 +5,9 @@ const Schedule = () => { let innerWidth = window.innerWidth / 1.5; return( <Container className='text-center'> + <br /> <h1 style={{color:"white"}}>Schedule</h1> + <br /> <iframe src="https://calendar.google.com/calendar/embed?wkst=1&ctz=Asia%2FTokyo&src=cnlvdXR1cm5AZ21haWwuY29t&color=%23039BE5" style={{border:"solid 1px #777"}} width={innerWidth} height={innerWidth/4*3} /> </Container> ) diff --git a/src/Works.tsx b/src/Works.tsx @@ -5,7 +5,9 @@ import UnderConstruction from './UnderConstruction'; const Works = () => { return( <Container className='text-center'> + <br /> <h1 style={{color:"white"}}>Works</h1> + <br /> <UnderConstruction></UnderConstruction> </Container> )