Skip to content

Commit

Permalink
feat: 홈화면 구현 #17
Browse files Browse the repository at this point in the history
feat: 홈화면 구현 #17
  • Loading branch information
Cllaude99 authored Jul 28, 2024
2 parents f5ca023 + d5ea75a commit 1300d9c
Show file tree
Hide file tree
Showing 15 changed files with 544 additions and 4 deletions.
17 changes: 17 additions & 0 deletions src/assets/imgs/Home/alone.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions src/assets/imgs/Home/clock.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions src/assets/imgs/Home/friend.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions src/assets/imgs/Home/home.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/imgs/Home/midpointLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions src/assets/imgs/Home/pin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/assets/imgs/Home/smallvote.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/imgs/Home/timeLogo.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: 12 additions & 0 deletions src/assets/imgs/Home/vote.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/imgs/Home/voteLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/imgs/Home/w_avatar.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions src/assets/imgs/Location/sharepin.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 6 additions & 3 deletions src/components/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
import MainLogo from '@/assets/imgs/Navbar/mainLogo.svg?react';
import { Link } from 'react-router-dom';
import { Link, useNavigate } from 'react-router-dom';

export default function Navbar() {
const navigate = useNavigate();

return (
<header className="w-4/5">
<nav className="flex items-center justify-between">
<ul>
<Link to="/" className="flex items-center gap-2">
<MainLogo />
<span className="text-3xl font-semibold">Syncspot</span>
<span className="text-3xl font-semibold">syncspot</span>
</Link>
</ul>
<ul className="flex items-center gap-6 *:cursor-pointer">
<ul className="flex items-center gap-6 *:cursor-pointer *:transition-colors">
<li onClick={() => navigate('/')}></li>
<li>중간지점찾기</li>
<li>장소투표</li>
<li>시간투표</li>
Expand Down
Loading

0 comments on commit 1300d9c

Please sign in to comment.