Skip to content

Commit

Permalink
Release 1.0.8 (#67)
Browse files Browse the repository at this point in the history
* fix: update config (#51)

* feat: fix logo overflow, add more info (#52)

Co-authored-by: Chaksawat <88503339+Nonene2546@users.noreply.github.com>

* feat: seminar-section (#53)

* feat: change seminar-table to support 1 room

* feat: add chart image

* hotfix: fix dockerfile (#54)

* FIX | fix github actions (#55)

* hotfix: fix dockerfile

* fix: fix github actions pipeline

* FIX | Pull new image (#56)

* hotfix: fix dockerfile

* fix: fix github actions pipeline

* fix: fix github pipeline

* FIX | fix docker compose (#57)

* hotfix: fix dockerfile

* fix: fix github actions pipeline

* fix: fix github pipeline

* feat: always pull image

* fix: fix arai mai ru

* feat/deploy-prod

* fix: fix active navbar (#58)

* fix: fix prod.yml

* HOTFIX | fix locations styles (#60)

* hotfix: fix locations styles

* fix: remove console.log

---------

Co-authored-by: Jirapat Treesuwan <jirapat.t@lakeikeda.com>
Co-authored-by: Kittipod Lambangchang <tonkittipod@gmail.com>

* FIX | improve navbar size (#61)

* fix: fix active navbar

* style: improve bigger navbar

---------

Co-authored-by: Kittipod Lambangchang <tonkittipod@gmail.com>

* FIX | modal too long (#63)

* fix: add scroll bar, pai add style kan ao aeng na

* fix: fix navbar padding

* fix: fix navbar padding

---------

Co-authored-by: Chaksawat <88503339+Nonene2546@users.noreply.github.com>

* update layout images

* FIX | mobile navbar close on click (#65)

* fix: mobile navbar close on click

* fix: change chart images

---------

Co-authored-by: Chaksawat <88503339+Nonene2546@users.noreply.github.com>
Co-authored-by: Kachen <106764256+Roshanen@users.noreply.github.com>
Co-authored-by: kittayot.s <kittayot.s@lakeikeda.com>
Co-authored-by: Jirapat Treesuwan <110451238+Peqchji@users.noreply.github.com>
Co-authored-by: Jirapat Treesuwan <jirapat.t@lakeikeda.com>
  • Loading branch information
6 people authored Nov 28, 2024
1 parent abf95f1 commit 2551859
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 24 deletions.
Binary file modified public/assets/images/plan28.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 modified public/assets/images/plan29.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
53 changes: 29 additions & 24 deletions src/shared/components/navbar/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,30 +36,35 @@ export function NavBar() {
</svg>
</Trigger>

<Content
align="start"
sideOffset={5}
className="w-full rounded-lg bg-black p-4 text-white shadow-md md:hidden"
>
<ul className="flex flex-col space-y-4">
{NAV_LINKS.map((navLink, index) => (
<li key={index}>
<Link
href={navLink.href}
className={cn(
'transition-colors',
currenSection === navLink.href.slice(1)
? 'text-orange-200 underline underline-offset-4'
: 'hover:text-shadow-orange text-white',
)}
>
{navLink.name}
</Link>
</li>
))}
</ul>
<Arrow className="fill-current text-white" />
</Content>
{isMenuOpen && (
<Content
align="start"
sideOffset={5}
className="w-full rounded-lg bg-black p-4 text-white shadow-md md:hidden"
>
<ul className="flex flex-col space-y-4">
{NAV_LINKS.map((navLink, index) => (
<li key={index}>
<Link
onClick={() => {
setIsMenuOpen(false);
}}
href={navLink.href}
className={cn(
'transition-colors',
currenSection === navLink.href.slice(1)
? 'text-orange-200 underline underline-offset-4'
: 'hover:text-shadow-orange text-white',
)}
>
{navLink.name}
</Link>
</li>
))}
</ul>
<Arrow className="fill-current text-white" />
</Content>
)}
</Root>

<ul className="mx-2 hidden space-x-4 font-bold md:flex lg:space-x-10">
Expand Down

0 comments on commit 2551859

Please sign in to comment.