Skip to content

Commit 91fb33e

Browse files
add more pages
1 parent 1a3b760 commit 91fb33e

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

app/collections/page.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const Page = () => {
2+
return <div>Coming soon</div>;
3+
};
4+
5+
export default Page;

app/forgot-password/page.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
const Page = () => {
2+
return <div>Coming very soon</div>;
3+
};
4+
5+
export default Page;

components/NavbarComponents/Navbar.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use client";
22

3-
import { Home, ImageUp } from "lucide-react";
3+
import { Home, ImageUp, LibraryBig } from "lucide-react";
44
import Link from "next/link";
55
import { usePathname } from "next/navigation";
66
import ThemeToggle from "./ThemeToggle";
@@ -12,6 +12,7 @@ export default function Navbar() {
1212
const links = [
1313
{ name: "Home", href: "/", icon: Home },
1414
{ name: "Generate", href: "/generate", icon: ImageUp },
15+
{ name: "Collections", href: "/collections", icon: LibraryBig },
1516
];
1617

1718
return (

0 commit comments

Comments
 (0)