Skip to content

Commit

Permalink
feat: 시작 페이지 이름, 수업 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
gogumalatte committed Nov 18, 2024
1 parent 2e1fb0f commit 0189ae5
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion src/Start/StartPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,16 @@ const StartPage: React.FC = () => {

return (
<Center height="100vh" bg="gray.100">
<VStack spacing={8}>
<VStack spacing={8} position="relative">
{/* 메인 텍스트 */}
<Text fontSize={{ base: "2xl", md: "3xl" }} fontWeight="bold">
Welcome to OTT Recommender
</Text>
<Text fontSize={{ base: "md", md: "lg" }} color="gray.600">
Discover the best OTT content tailored for you
</Text>

{/* 카카오 로그인 버튼 */}
<Box
as="button"
onClick={handleKakaoLogin}
Expand All @@ -34,6 +37,19 @@ const StartPage: React.FC = () => {
cursor="pointer"
/>
</Box>
{/* 책갈피 스타일 */}
<Box
color="gray.500"
px={4}
py={2}
fontSize="sm"
fontWeight="light"
textAlign={"center"}
mt={50}
>
<Text>Software Design Course in Kyungpook National University</Text>
<Text>Copyright(c) 2024, Lee Jiho, Choi Kiyeong</Text>
</Box>
</VStack>
</Center>
);
Expand Down

0 comments on commit 0189ae5

Please sign in to comment.