Skip to content

Commit

Permalink
public 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hojae-lee authored Mar 15, 2024
1 parent 872ad88 commit e910b19
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NEXT_PUBLIC_BASE_API_URL=https://example.com
4 changes: 0 additions & 4 deletions components/Navigation/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,17 @@ interface Props {
export default function Nav({ translation }: Props) {
return (
<nav className="absolute h-16 w-full flex items-center justify-between border-b border-b-neutral-200 bg-white px-8 lg:px-48">
{/* Logo */}
<div className="flex items-center">
<Logo />
</div>

{/* Menu and Locale Selector */}
<div className="flex items-center space-x-4">
{/* Menu */}
<div className="hidden md:flex space-x-4">
<MenuItem href="/" text={translation("nav.menu.home")} />
<MenuItem href="/about" text={translation("nav.menu.about")} />
<MenuItem href="/contact" text={translation("nav.menu.contact")} />
</div>

{/* Locale Selector */}
<LocaleSelector message={translation("nav.locale-selector.message")} />
</div>
</nav>
Expand Down
1 change: 1 addition & 0 deletions public/.gitkeep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
public 파일 입니다.

0 comments on commit e910b19

Please sign in to comment.