Skip to content

Commit

Permalink
refactor: 'Coming Soon' message on insert-cartridges page
Browse files Browse the repository at this point in the history
  • Loading branch information
arthuravianna authored and arthuravianna committed Jan 23, 2024
1 parent f24d903 commit 6ec0894
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion frontend/app/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function Navbar() {
<p>Cartridges</p>
</Link>

<Link href={"/upload-cartridge"} className={ pathname === "/upload-cartridge" ? "link-active" : "link-2step-hover" }>
<Link href={"/insert-cartridge"} className={ pathname === "/insert-cartridge" ? "link-active" : "link-2step-hover" }>
<p>Insert Cartridge</p>
</Link>
</nav>
Expand Down
10 changes: 10 additions & 0 deletions frontend/app/insert-cartridge/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
import { fontPressStart2P } from "../utils/font"


export default function UploadCartridge() {
return (
<main className="flex items-center justify-center h-lvh">
<span className={`${fontPressStart2P.className} text-4xl` }>Coming Soon!</span>
</main>
)
}
7 changes: 0 additions & 7 deletions frontend/app/upload-cartridge/page.tsx

This file was deleted.

0 comments on commit 6ec0894

Please sign in to comment.