11import MainBanner from "./components/MainBanner" ;
2- import { Container , Typography , Theme , Box } from "@mui/material" ;
2+ import { Container , Typography , Theme , Input } from "@mui/material" ;
33import PseudoLabLogo from "../../components/common/PseudoLabLogo" ;
44import { styled } from "@mui/system" ;
55
@@ -20,50 +20,49 @@ const Description = styled(Typography)({
2020 marginBottom : ( theme : Theme ) => theme . spacing ( 4 ) ,
2121} ) ;
2222
23- // const StyledButton = styled(Button)({
24- // marginTop: (theme: Theme) => theme.spacing(2),
25- // padding: (theme: Theme) => theme.spacing(1.5, 4),
26- // fontSize: ' 1rem' ,
27- // });
23+
24+
25+ const InputBox = styled ( Input ) ( {
26+ marginTop : " 1rem" ,
27+ } ) ;
2828
2929const Home = ( ) => {
30+ let loginId = ""
31+ let password = ""
32+ const handLogin = ( ) => {
33+
34+ }
35+
3036 return (
3137 < StyledContainer >
32- < MainBanner />
33- < Typography sx = { { whiteSpace : "pre-wrap" , fontSize : "8vw" , textAlign : "left" , fontFamily : "Spoqa Han Sans Neo" , fontWeight : "bold" } } >
34- 8th PseudoCon
38+ < Typography sx = { { whiteSpace : "pre-wrap" , fontSize : "5vw" , textAlign : "left" , fontFamily : "Spoqa Han Sans Neo" , fontWeight : "bold" } } >
39+ 빙고 네트워킹
3540 </ Typography >
3641
37- < Typography sx = { { whiteSpace : "pre-wrap" , fontSize : "3vw " , textAlign : "left" , fontFamily : "Spoqa Han Sans Neo" , fontWeight : "bold" } } >
38- 2024.6.15
42+ < Typography sx = { { whiteSpace : "pre-wrap" , fontSize : "4vw " , textAlign : "left" , fontFamily : "Spoqa Han Sans Neo" , fontWeight : "bold" } } >
43+ Sudo Pseudo Explore
3944 </ Typography >
4045
41- < Typography sx = { { whiteSpace : "pre-wrap" , fontSize : "5vw" , textAlign : "left" , fontFamily : "Spoqa Han Sans Neo" , fontWeight : "bold" } } >
42- 가짜연구소의 8번째 컨퍼런스
46+ < Typography sx = { { whiteSpace : "pre-wrap" , fontSize : "3. 5vw" , textAlign : "left" , fontFamily : "Spoqa Han Sans Neo" , fontWeight : "bold" } } >
47+ 1st Grand Gathering
4348 </ Typography >
4449
45- < Typography sx = { { whiteSpace : "pre-wrap" , fontSize : "4vw " , textAlign : "left" , fontFamily : "Spoqa Han Sans Neo" , fontWeight : "bold" } } >
46- "AI 파도속에서 나만의 북극성 찾기"
50+ < Typography sx = { { whiteSpace : "pre-wrap" , fontSize : "3vw " , textAlign : "left" , fontFamily : "Spoqa Han Sans Neo" , fontWeight : "bold" } } >
51+ 2024.11.23
4752 </ Typography >
4853
49- < PseudoLabLogo maxWidth = "20rem" height = "auto" marginRight = "auto" />
50- < Title > 가짜연구소 (Pseudo Lab)</ Title >
51- < Description >
52- < b > 가짜연구소</ b > 는
53- < span style = { { color : "#d9730d" , fontWeight : "bold" } } >
54- 머신러닝/데이터사이언스
55- </ span >
56- 를 중심으로 모인{ " " }
57- < span style = { { color : "#d9730d" , fontWeight : "bold" } } >
58- 비영리 커뮤니티
59- </ span >
60- 입니다.
61- < br />
62- < span style = { { color : "#d9730d" , fontWeight : "bold" } } >
63- 성장의 앙상블이 만들어내는 울림
64- </ span >
65- 을 통해 개인과 커뮤니티의 성장의 사이클을 함께 만들어나가요!
66- </ Description >
54+ < InputBox
55+ placeholder = "아이디 입력"
56+ value = { loginId }
57+ onChange = { handLogin }
58+ > </ InputBox >
59+
60+ < InputBox
61+ placeholder = "비밀번호 입력"
62+ value = { password }
63+ onChange = { handLogin }
64+ > </ InputBox >
65+
6766 </ StyledContainer >
6867 ) ;
6968} ;
0 commit comments