Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added platforms/emover/emover-logo.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 added platforms/emover/src/app/icon.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 added platforms/marketplace/assets/emover.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions platforms/marketplace/client/src/data/apps.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,5 +79,13 @@
"category": "Storage",
"logoUrl": "/file-manager.png",
"url": "https://file-manager.w3ds.metastate.foundation"
},
{
"id": "emover",
"name": "Emover",
"description": "Migrate your eVault to a new provider. Move your data between eVault instances with full control and minimal downtime.",
"category": "Storage",
"logoUrl": "/emover.png",
"url": "https://emover.w3ds.metastate.foundation"
}
]
40 changes: 20 additions & 20 deletions platforms/marketplace/client/src/pages/home-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ export default function HomePage() {
const apps = appsData;
const isLoadingApps = false;

const categories = ["All Apps", "Identity", "Social", "Governance", "Wellness", "Finance"];
const categories = ["All Apps", "Identity", "Social", "Governance", "Wellness", "Finance", "Storage", "Productivity"];

const filteredApps = apps.filter(app => {
const matchesSearch = app.name.toLowerCase().includes(searchQuery.toLowerCase()) ||
app.description.toLowerCase().includes(searchQuery.toLowerCase());
const matchesCategory = selectedCategory === "All Apps" ||
const matchesCategory = selectedCategory === "All Apps" ||
app.category.toLowerCase() === selectedCategory.toLowerCase();
return matchesSearch && matchesCategory;
});
Expand All @@ -31,9 +31,9 @@ export default function HomePage() {
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8">
<div className="flex justify-between items-center h-20">
<div className="flex items-center space-x-4">
<img
src={w3dsLogo}
alt="W3DS Logo"
<img
src={w3dsLogo}
alt="W3DS Logo"
className="h-8 w-auto"
/>
<div className="text-sm font-medium text-gray-600">Marketplace</div>
Expand All @@ -51,9 +51,9 @@ export default function HomePage() {
</p>
<div className="flex justify-center">
<div className="relative max-w-lg w-full">
<Input
type="search"
placeholder="What are you looking for?"
<Input
type="search"
placeholder="What are you looking for?"
className="w-full h-16 pl-6 pr-16 rounded-full border-0 text-black text-lg font-medium shadow-lg"
value={searchQuery}
onChange={(e) => setSearchQuery(e.target.value)}
Expand Down Expand Up @@ -117,9 +117,9 @@ export default function HomePage() {
<div className="bg-white rounded-3xl p-8 border border-gray-100 hover:border-gray-300 transition-all duration-200 group cursor-pointer">
<div className="flex items-start space-x-6 mb-6">
{app.logoUrl ? (
<img
src={app.logoUrl}
alt={`${app.name} logo`}
<img
src={app.logoUrl}
alt={`${app.name} logo`}
className="w-20 h-20 rounded-2xl object-cover flex-shrink-0"
/>
) : (
Expand All @@ -144,9 +144,9 @@ export default function HomePage() {
<div className="flex items-center justify-end gap-3">
{(app as any).appStoreUrl && (app as any).playStoreUrl ? (
<>
<a
href={(app as any).appStoreUrl}
target="_blank"
<a
href={(app as any).appStoreUrl}
target="_blank"
rel="noopener noreferrer"
className="flex-1"
onClick={(e) => e.stopPropagation()}
Expand All @@ -155,9 +155,9 @@ export default function HomePage() {
App Store
</Button>
</a>
<a
href={(app as any).playStoreUrl}
target="_blank"
<a
href={(app as any).playStoreUrl}
target="_blank"
rel="noopener noreferrer"
className="flex-1"
onClick={(e) => e.stopPropagation()}
Expand All @@ -168,9 +168,9 @@ export default function HomePage() {
</a>
</>
) : (
<a
href={(app as any).url || '#'}
target="_blank"
<a
href={(app as any).url || '#'}
target="_blank"
rel="noopener noreferrer"
onClick={(e) => e.stopPropagation()}
>
Expand Down