Spaces:
Running
Running
ameerazampixis
commited on
Commit
•
02037e7
1
Parent(s):
486db38
navbar
Browse files- README.md +16 -1
- src/components/navbar.tsx +9 -9
README.md
CHANGED
@@ -6,4 +6,19 @@ colorTo: red
|
|
6 |
sdk: docker
|
7 |
pinned: false
|
8 |
app_port: 3000
|
9 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
6 |
sdk: docker
|
7 |
pinned: false
|
8 |
app_port: 3000
|
9 |
+
---
|
10 |
+
|
11 |
+
## Add New Paper here
|
12 |
+
```
|
13 |
+
Got /src/app/about-event.tsx
|
14 |
+
|
15 |
+
#upload image in /public/images
|
16 |
+
|
17 |
+
{
|
18 |
+
title: "Paper Title", #paper name
|
19 |
+
description: "Discriptions", #short description of paper,
|
20 |
+
subTitle: "Paper Tag", #Forexample lipsync , Diffusion
|
21 |
+
imageName : "avatar1.jpg", #image name
|
22 |
+
paper_links :"paper links" #paper link
|
23 |
+
},
|
24 |
+
```
|
src/components/navbar.tsx
CHANGED
@@ -38,17 +38,17 @@ function NavItem({ children, href }: NavItemProps) {
|
|
38 |
}
|
39 |
|
40 |
const NAV_MENU = [
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
41 |
{
|
42 |
-
name: "
|
43 |
icon: RectangleStackIcon,
|
44 |
-
},
|
45 |
-
{
|
46 |
-
name: "Account",
|
47 |
-
icon: UserCircleIcon,
|
48 |
-
},
|
49 |
-
{
|
50 |
-
name: "Docs",
|
51 |
-
icon: CommandLineIcon,
|
52 |
href: "https://www.material-tailwind.com/docs/react/installation",
|
53 |
},
|
54 |
];
|
|
|
38 |
}
|
39 |
|
40 |
const NAV_MENU = [
|
41 |
+
// {
|
42 |
+
// name: "Page",
|
43 |
+
// icon: RectangleStackIcon,
|
44 |
+
// },
|
45 |
+
// {
|
46 |
+
// name: "Account",
|
47 |
+
// icon: UserCircleIcon,
|
48 |
+
// },
|
49 |
{
|
50 |
+
name: "Add New Paper",
|
51 |
icon: RectangleStackIcon,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
href: "https://www.material-tailwind.com/docs/react/installation",
|
53 |
},
|
54 |
];
|