Skip to content

Commit

Permalink
fix: register
Browse files Browse the repository at this point in the history
  • Loading branch information
jasper200207 committed Nov 15, 2024
1 parent f86293a commit d0a61a7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/layouts/Header.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useState } from "react";
import { Link } from "react-router-dom";
import { HeartOutlined, ShoppingCartOutlined } from "@ant-design/icons";
import { Input, Box, Flex, Text, Icon } from "@chakra-ui/react";
import { Box, Flex, Text, Icon } from "@chakra-ui/react";
import poomasi from "@assets/logo/logo.png";
import Image from "@components/common/Image";
import useLogin from "@hooks/useLogin";
Expand All @@ -27,7 +27,7 @@ const Header = () => {
</Text>,
]
: [
<Text as={Link} mr="12px" to="/register">
<Text as={Link} mr="12px" to="/email/register">
회원가입
</Text>,
<Text as={Link} to="/login">
Expand Down Expand Up @@ -85,7 +85,7 @@ const Header = () => {
</Link>
</Flex>

<Input
{/* <Input
w="400px"
h="40px"
ml={10}
Expand All @@ -95,7 +95,7 @@ const Header = () => {
borderRadius="12px"
_placeholder={{ color: "#B3B3B3" }}
placeholder="검색어를 입력해주세요."
/>
/> */}

<Flex ml={250}>
<Box mx="10px" color="#1C4532" cursor="pointer">
Expand Down

0 comments on commit d0a61a7

Please sign in to comment.