|
1 | | -import { Github, ExternalLink } from 'lucide-react'; |
2 | | -import { SiPypi, SiNpm, SiHuggingface } from '@icons-pack/react-simple-icons'; |
| 1 | +import { ExternalLink } from 'lucide-react'; |
| 2 | +import { SiGithub, SiPypi, SiNpm, SiHuggingface } from '@icons-pack/react-simple-icons'; |
3 | 3 |
|
4 | 4 | const projects = [ |
5 | 5 | { |
6 | 6 | name: 'HyperView', |
7 | 7 | tagline: 'Data curation co-pilot', |
8 | 8 | description: |
9 | | - 'Dual-panel curation UI: image grid + embedding map. Euclidean ↔ Poincaré ↔ spherical.', |
| 9 | + 'Multi-panel curation UI: image grid + embedding map. Euclidean ↔ Poincaré disk.', |
10 | 10 | features: [ |
11 | 11 | 'Agentic data cleanup', |
12 | 12 | 'Multi-geometry views', |
13 | 13 | 'HuggingFace integration', |
14 | 14 | ], |
15 | 15 | repo: 'https://github.com/Hyper3Labs/HyperView', |
16 | | - demo: 'https://huggingface.co/spaces/Hyper3Labs/HyperView', |
17 | | - hfSpaces: 'https://huggingface.co/spaces/Hyper3Labs/HyperView', |
| 16 | + demo: 'https://huggingface.co/spaces/hyper3labs/HyperView', |
| 17 | + hfSpaces: 'https://huggingface.co/spaces/hyper3labs/HyperView', |
18 | 18 | pypi: 'https://pypi.org/project/hyperview/', |
19 | 19 | install: 'pip install hyperview', |
20 | 20 | language: 'Python', |
@@ -46,8 +46,8 @@ const projects = [ |
46 | 46 | 'Auto HF download', |
47 | 47 | ], |
48 | 48 | repo: 'https://github.com/Hyper3Labs/hyper-models', |
49 | | - demo: 'https://huggingface.co/collections/hyperview-org/hyper-models-67900e48542fa2ea29a26684', |
50 | | - hfCollection: 'https://huggingface.co/collections/hyperview-org/hyper-models-67900e48542fa2ea29a26684', |
| 49 | + demo: 'https://huggingface.co/mnm-matin/hyperbolic-clip', |
| 50 | + hfCollection: 'https://huggingface.co/mnm-matin/hyperbolic-clip', |
51 | 51 | pypi: 'https://pypi.org/project/hyper-models/', |
52 | 52 | install: 'pip install hyper-models', |
53 | 53 | language: 'Python', |
@@ -89,7 +89,7 @@ function ProjectCard({ project }: { project: typeof projects[0] }) { |
89 | 89 | className="p-1.5 text-gray-500 hover:text-white hover:bg-white/[0.08] rounded-lg transition-all" |
90 | 90 | title="GitHub" |
91 | 91 | > |
92 | | - <Github className="w-4 h-4" /> |
| 92 | + <SiGithub className="w-4 h-4" /> |
93 | 93 | </a> |
94 | 94 | {project.pypi && ( |
95 | 95 | <a |
@@ -119,7 +119,7 @@ function ProjectCard({ project }: { project: typeof projects[0] }) { |
119 | 119 | target="_blank" |
120 | 120 | rel="noopener noreferrer" |
121 | 121 | className="p-1.5 text-gray-500 hover:text-yellow-400 hover:bg-white/[0.08] rounded-lg transition-all" |
122 | | - title={project.hfSpaces ? 'Hugging Face Spaces' : 'Hugging Face Collection'} |
| 122 | + title={project.hfSpaces ? 'Hugging Face Spaces' : 'Hugging Face'} |
123 | 123 | > |
124 | 124 | <SiHuggingface className="w-4 h-4" /> |
125 | 125 | </a> |
|
0 commit comments