File size: 3,795 Bytes
5bd8c59
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37751f2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5bd8c59
 
 
 
 
37751f2
5bd8c59
 
37751f2
 
5bd8c59
 
 
37751f2
 
5bd8c59
 
 
37751f2
 
5bd8c59
 
 
37751f2
 
5bd8c59
 
 
37751f2
 
5bd8c59
 
 
37751f2
 
 
 
 
 
 
 
 
 
 
 
 
 
5bd8c59
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Hugging Face Spaces Links</title>
    <style>
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            line-height: 1.6;
        }
        h1 {
            color: #4a4a4a;
            margin-bottom: 20px;
        }
        .link-container {
            margin-bottom: 15px;
            padding: 15px;
            border-radius: 8px;
            background-color: #f7f7f7;
            transition: background-color 0.2s;
        }
        .link-container:hover {
            background-color: #e9e9e9;
        }
        a {
            color: #1a73e8;
            text-decoration: none;
            font-weight: 500;
            font-size: 18px;
            display: block;
        }
        a:hover {
            text-decoration: underline;
        }
        .description {
            color: #666;
            margin-top: 5px;
            font-size: 14px;
        }
        .open-all-button {
            display: block;
            margin: 20px auto;
            padding: 12px 24px;
            background-color: #4285f4;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .open-all-button:hover {
            background-color: #3367d6;
        }
    </style>
</head>
<body>
    <h1>Hugging Face Spaces Links</h1>
    
    <button class="open-all-button" id="openAllLinks">Open All Links in New Tabs</button>
    
    <div class="link-container">
        <a href="https://huggingface.co/spaces/fantaxy/Space-Leaderboard" target="_blank">Space-Leaderboard</a>
        <div class="description">Leaderboard for Hugging Face Spaces</div>
    </div>
    
    <div class="link-container">
        <a href="https://huggingface.co/spaces/fantaxy/handspew-PLUS" target="_blank">handspew-PLUS</a>
        <div class="description">Enhanced handwriting generation tools</div>
    </div>
    
    <div class="link-container">
        <a href="https://huggingface.co/spaces/fantaxy/SonicOrbit-MAX" target="_blank">SonicOrbit-MAX</a>
        <div class="description">Advanced audio generation and manipulation</div>
    </div>
    
    <div class="link-container">
        <a href="https://huggingface.co/spaces/fantaxy/Datasets-Convertors" target="_blank">Datasets-Convertors</a>
        <div class="description">Tools for converting between different dataset formats</div>
    </div>
    
    <div class="link-container">
        <a href="https://huggingface.co/spaces/fantaxy/Travel-Agent?logs=container" target="_blank">Travel-Agent</a>
        <div class="description">AI travel planning assistant with container logs</div>
    </div>

    <script>
        // Function to open all links in new tabs
        document.getElementById('openAllLinks').addEventListener('click', function() {
            const links = [
                "https://huggingface.co/spaces/fantaxy/Space-Leaderboard",
                "https://huggingface.co/spaces/fantaxy/handspew-PLUS",
                "https://huggingface.co/spaces/fantaxy/SonicOrbit-MAX",
                "https://huggingface.co/spaces/fantaxy/Datasets-Convertors",
                "https://huggingface.co/spaces/fantaxy/Travel-Agent?logs=container"
            ];
            
            links.forEach(link => {
                window.open(link, '_blank');
            });
        });
    </script>
</body>
</html>