-
+
diff --git a/src/features/Profiles/pages/ProfilePage/ProfilePage.tsx b/src/features/Profiles/pages/ProfilePage/ProfilePage.tsx
index 48b00ce..58a265a 100644
--- a/src/features/Profiles/pages/ProfilePage/ProfilePage.tsx
+++ b/src/features/Profiles/pages/ProfilePage/ProfilePage.tsx
@@ -44,10 +44,6 @@ export default function ProfilePage() {
- {
- isOwner &&
-
- }
diff --git a/src/features/Projects/pages/CategoryPage/HeaderImage/HeaderImage.tsx b/src/features/Projects/pages/CategoryPage/HeaderImage/HeaderImage.tsx
index 395039c..2f343ba 100644
--- a/src/features/Projects/pages/CategoryPage/HeaderImage/HeaderImage.tsx
+++ b/src/features/Projects/pages/CategoryPage/HeaderImage/HeaderImage.tsx
@@ -3,6 +3,7 @@ import { FiArrowLeft } from 'react-icons/fi'
import Skeleton from 'react-loading-skeleton'
import { Link } from 'react-router-dom'
import ASSETS from 'src/assets'
+import { PAGES_ROUTES } from 'src/utils/routing'
type Props = {
isLoading: boolean
@@ -33,7 +34,7 @@ export default function HeaderImage(props: Props) {
Explore a fun directory of lightning web apps,
img: Assets.Images_ExploreHeader1,
link: {
- content: "Submit app",
+ content: "Submit project",
url: "https://form.jotform.com/220301236112030",
},
},
diff --git a/src/features/Projects/pages/ExplorePage/ProjectsSection/ProjectsSection.tsx b/src/features/Projects/pages/ExplorePage/ProjectsSection/ProjectsSection.tsx
index 0b5bac8..0013633 100644
--- a/src/features/Projects/pages/ExplorePage/ProjectsSection/ProjectsSection.tsx
+++ b/src/features/Projects/pages/ExplorePage/ProjectsSection/ProjectsSection.tsx
@@ -20,7 +20,7 @@ export default function ProjectsSection() {
return (
Hottest >}
- link='/apps/hottest'
+ link='/projects/hottest'
projects={data.hottestProjects} />
}
{restCategories.map(({ id, title, project, }) => {
if (project)
return
else return null
diff --git a/src/utils/routing/routes.ts b/src/utils/routing/routes.ts
index 5f7f696..f4c338f 100644
--- a/src/utils/routing/routes.ts
+++ b/src/utils/routing/routes.ts
@@ -61,10 +61,10 @@ export function createRoute(options: RouteOptions) {
}
export const PAGES_ROUTES = {
- apps: {
- default: "/apps",
- hottest: "/apps/hottest",
- byCategoryId: "/apps/category/:id"
+ projects: {
+ default: "/projects",
+ hottest: "/projects/hottest",
+ byCategoryId: "/projects/category/:id"
},
blog: {
feed: "/blog",