apirrone commited on
Commit
0bef7a9
·
1 Parent(s): f5977e4

filter by reachy_mini_python_app and fix links in footer

Browse files
src/components/Footer.jsx CHANGED
@@ -29,9 +29,9 @@ const communityLinks = [
29
 
30
  const socialLinks = [
31
  { icon: GitHubIcon, href: 'https://github.com/pollen-robotics', label: 'GitHub' },
32
- { icon: XIcon, href: 'https://x.com/polaborearobot', label: 'X (Twitter)' },
33
- { icon: LinkedInIcon, href: 'https://www.linkedin.com/company/pollen-robotics/', label: 'LinkedIn' },
34
- { icon: YouTubeIcon, href: 'https://www.youtube.com/@pollen-robotics', label: 'YouTube' },
35
  ];
36
 
37
  function FooterLink({ link }) {
 
29
 
30
  const socialLinks = [
31
  { icon: GitHubIcon, href: 'https://github.com/pollen-robotics', label: 'GitHub' },
32
+ { icon: XIcon, href: 'https://x.com/pollenrobotics', label: 'X (Twitter)' },
33
+ { icon: LinkedInIcon, href: 'https://www.linkedin.com/company/pollen-robotics', label: 'LinkedIn' },
34
+ { icon: YouTubeIcon, href: 'https://www.youtube.com/pollen-robotics', label: 'YouTube' },
35
  ];
36
 
37
  function FooterLink({ link }) {
src/context/AppsContext.jsx CHANGED
@@ -10,7 +10,7 @@ const AppsContext = createContext(null);
10
  // Fetch all spaces with reachy_mini tag from HuggingFace API
11
  async function fetchAllReachyMiniSpaces() {
12
  try {
13
- const response = await fetch(`${HF_SPACES_API}?filter=reachy_mini&full=true&limit=100`);
14
  if (!response.ok) {
15
  console.warn('Failed to fetch spaces with tag:', response.status);
16
  return [];
 
10
  // Fetch all spaces with reachy_mini tag from HuggingFace API
11
  async function fetchAllReachyMiniSpaces() {
12
  try {
13
+ const response = await fetch(`${HF_SPACES_API}?filter=reachy_mini_python_app&full=true&limit=100`);
14
  if (!response.ok) {
15
  console.warn('Failed to fetch spaces with tag:', response.status);
16
  return [];