imjliao commited on
Commit
15dcd59
·
verified ·
1 Parent(s): 5abb7af

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +275 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Pointer Page
3
- emoji: 🌍
4
- colorFrom: indigo
5
- colorTo: purple
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: pointer-page
3
+ emoji: 🐳
4
+ colorFrom: yellow
5
+ colorTo: red
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,275 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Pointer - General Purpose AI Agent</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Space Grotesk', sans-serif;
14
+ background-color: #F9F9F9;
15
+ }
16
+
17
+ .neobrutal-border {
18
+ border: 3px solid #000;
19
+ box-shadow: 8px 8px 0px #000;
20
+ }
21
+
22
+ .neobrutal-border-thin {
23
+ border: 2px solid #000;
24
+ box-shadow: 4px 4px 0px #000;
25
+ }
26
+
27
+ .neobrutal-btn {
28
+ transition: all 0.2s ease;
29
+ }
30
+
31
+ .neobrutal-btn:hover {
32
+ transform: translate(2px, 2px);
33
+ box-shadow: 2px 2px 0px #000;
34
+ }
35
+
36
+ .neobrutal-highlight {
37
+ background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 50%, #FFE500 50%, #FFE500 100%);
38
+ background-size: 200% 100%;
39
+ background-position: 100% 0;
40
+ transition: background-position 0.3s ease;
41
+ }
42
+
43
+ .neobrutal-highlight:hover {
44
+ background-position: 0 0;
45
+ }
46
+ </style>
47
+ </head>
48
+ <body class="bg-[#F9F9F9]">
49
+ <!-- Navigation -->
50
+ <nav class="bg-white py-4 px-6 neobrutal-border sticky top-0 z-50">
51
+ <div class="container mx-auto flex justify-between items-center">
52
+ <div class="flex items-center space-x-2">
53
+ <div class="w-8 h-8 bg-black flex items-center justify-center neobrutal-border-thin">
54
+ <span class="text-white font-bold">P</span>
55
+ </div>
56
+ <span class="font-bold text-xl">Pointer</span>
57
+ </div>
58
+
59
+ <div class="hidden md:flex space-x-6">
60
+ <a href="#" class="font-medium hover:text-blue-600 neobrutal-highlight px-2 py-1">Company</a>
61
+ <a href="#" class="font-medium hover:text-blue-600 neobrutal-highlight px-2 py-1">Docs</a>
62
+ <a href="#" class="font-medium hover:text-blue-600 neobrutal-highlight px-2 py-1">Changelog</a>
63
+ <a href="#" class="font-medium hover:text-blue-600 neobrutal-highlight px-2 py-1">Discord</a>
64
+ <a href="#" class="font-medium hover:text-blue-600 neobrutal-highlight px-2 py-1">Contact</a>
65
+ </div>
66
+
67
+ <div class="flex items-center space-x-4">
68
+ <a href="#" class="hidden md:block font-medium px-4 py-2 bg-white neobrutal-border-thin hover:bg-gray-100 neobrutal-btn">Sign Up</a>
69
+ <button class="md:hidden neobrutal-border-thin p-2">
70
+ <i class="fas fa-bars"></i>
71
+ </button>
72
+ </div>
73
+ </div>
74
+ </nav>
75
+
76
+ <!-- Hero Section -->
77
+ <section class="py-16 px-6">
78
+ <div class="container mx-auto">
79
+ <div class="bg-white p-8 neobrutal-border max-w-4xl mx-auto">
80
+ <div class="flex flex-col md:flex-row items-center">
81
+ <div class="md:w-1/2 mb-8 md:mb-0">
82
+ <h1 class="text-4xl md:text-5xl font-bold mb-4 leading-tight">
83
+ The Super intelligence <br>
84
+ <span class="text-blue-600">for everyone</span>
85
+ </h1>
86
+ <p class="text-lg mb-6">
87
+ Pointer is the world's first General Purpose AI Agent that can browse the web, read documents, analyze data, write code, and perform tasks autonomously for you.
88
+ </p>
89
+ <div class="flex flex-col sm:flex-row space-y-3 sm:space-y-0 sm:space-x-4">
90
+ <a href="#" class="px-6 py-3 bg-black text-white font-bold text-center neobrutal-border-thin hover:bg-gray-800 neobrutal-btn">
91
+ Join Private Beta
92
+ </a>
93
+ <a href="#" class="px-6 py-3 bg-white font-bold text-center neobrutal-border-thin hover:bg-gray-100 neobrutal-btn">
94
+ Pointer CLI Waitlist
95
+ </a>
96
+ </div>
97
+ </div>
98
+ <div class="md:w-1/2 flex justify-center">
99
+ <div class="relative">
100
+ <div class="w-64 h-64 bg-blue-100 neobrutal-border flex items-center justify-center">
101
+ <div class="w-48 h-48 bg-blue-200 neobrutal-border-thin flex items-center justify-center">
102
+ <div class="w-32 h-32 bg-blue-300 neobrutal-border-thin flex items-center justify-center">
103
+ <i class="fas fa-robot text-4xl"></i>
104
+ </div>
105
+ </div>
106
+ </div>
107
+ <div class="absolute -bottom-4 -right-4 bg-yellow-300 px-4 py-2 neobrutal-border-thin font-bold">
108
+ Research Preview
109
+ </div>
110
+ </div>
111
+ </div>
112
+ </div>
113
+ </div>
114
+ </div>
115
+ </section>
116
+
117
+ <!-- Features Section -->
118
+ <section class="py-16 px-6 bg-white">
119
+ <div class="container mx-auto">
120
+ <div class="text-center mb-12">
121
+ <h2 class="text-3xl font-bold mb-4">General Purpose Agent</h2>
122
+ <p class="text-xl">Handling tasks autonomously</p>
123
+ </div>
124
+
125
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-8">
126
+ <!-- Feature 1 -->
127
+ <div class="bg-[#FFEEEE] p-6 neobrutal-border h-full">
128
+ <div class="flex items-center mb-4">
129
+ <div class="w-12 h-12 bg-red-500 text-white flex items-center justify-center neobrutal-border-thin mr-4">
130
+ <i class="fas fa-bolt text-xl"></i>
131
+ </div>
132
+ <h3 class="text-xl font-bold">Autonomous</h3>
133
+ </div>
134
+ <p>Takes initiative and completes tasks autonomously with human-in-the-loop.</p>
135
+ </div>
136
+
137
+ <!-- Feature 2 -->
138
+ <div class="bg-[#EEFFEE] p-6 neobrutal-border h-full">
139
+ <div class="flex items-center mb-4">
140
+ <div class="w-12 h-12 bg-green-500 text-white flex items-center justify-center neobrutal-border-thin mr-4">
141
+ <i class="fas fa-globe text-xl"></i>
142
+ </div>
143
+ <h3 class="text-xl font-bold">Generalist</h3>
144
+ </div>
145
+ <p>Handles diverse and long-horizon tasks across multiple domains with instructions.</p>
146
+ </div>
147
+
148
+ <!-- Feature 3 -->
149
+ <div class="bg-[#EEEEFF] p-6 neobrutal-border h-full">
150
+ <div class="flex items-center mb-4">
151
+ <div class="w-12 h-12 bg-blue-500 text-white flex items-center justify-center neobrutal-border-thin mr-4">
152
+ <i class="fas fa-brain text-xl"></i>
153
+ </div>
154
+ <h3 class="text-xl font-bold">Adaptive</h3>
155
+ </div>
156
+ <p>Improves over time based on feedback with human-like memory and reasoning.</p>
157
+ </div>
158
+ </div>
159
+ </div>
160
+ </section>
161
+
162
+ <!-- Demo Section -->
163
+ <section class="py-16 px-6">
164
+ <div class="container mx-auto">
165
+ <div class="bg-white p-8 neobrutal-border">
166
+ <div class="flex flex-col md:flex-row items-center">
167
+ <div class="md:w-1/2 mb-8 md:mb-0">
168
+ <h2 class="text-3xl font-bold mb-4">Experience the Future</h2>
169
+ <h3 class="text-2xl text-blue-600 font-bold mb-4">General Purpose Assistant for everyone</h3>
170
+ <p class="text-lg mb-6">
171
+ Watch as Pointer navigates the web, understands complex tasks, and executes them with human-like reasoning. From research to automation, it handles it all.
172
+ </p>
173
+ <div class="flex space-x-4">
174
+ <a href="#" class="px-6 py-3 bg-black text-white font-bold neobrutal-border-thin hover:bg-gray-800 neobrutal-btn">
175
+ Start a Task
176
+ </a>
177
+ <a href="#" class="px-6 py-3 bg-white font-bold neobrutal-border-thin hover:bg-gray-100 neobrutal-btn">
178
+ View Progress
179
+ </a>
180
+ </div>
181
+ </div>
182
+ <div class="md:w-1/2">
183
+ <div class="bg-gray-200 p-4 neobrutal-border-thin">
184
+ <div class="bg-black text-white p-2 flex justify-between items-center">
185
+ <span class="font-mono">pointer-agent --task="research AI trends"</span>
186
+ <div class="flex space-x-2">
187
+ <div class="w-3 h-3 bg-red-500 rounded-full"></div>
188
+ <div class="w-3 h-3 bg-yellow-500 rounded-full"></div>
189
+ <div class="w-3 h-3 bg-green-500 rounded-full"></div>
190
+ </div>
191
+ </div>
192
+ <div class="bg-white p-4 h-64 overflow-y-auto font-mono text-sm">
193
+ <p class="text-green-600">> Initializing Pointer Agent v1.2.3</p>
194
+ <p class="text-green-600">> Authenticating user session...</p>
195
+ <p class="text-green-600">> Parsing task: "research AI trends"</p>
196
+ <p class="text-blue-600">> Breaking down into subtasks:</p>
197
+ <p class="text-blue-600">> 1. Identify key AI trends in 2023</p>
198
+ <p class="text-blue-600">> 2. Gather data from reputable sources</p>
199
+ <p class="text-blue-600">> 3. Analyze emerging patterns</p>
200
+ <p class="text-blue-600">> 4. Compile comprehensive report</p>
201
+ <p class="text-purple-600">> Starting subtask 1...</p>
202
+ <p class="text-gray-600">> Opening browser to search for "top AI trends 2023"</p>
203
+ <p class="text-gray-600">> Found 12 relevant articles from TechCrunch, MIT Review, etc.</p>
204
+ <p class="text-purple-600">> Extracting key information...</p>
205
+ <p class="animate-pulse">> _</p>
206
+ </div>
207
+ </div>
208
+ </div>
209
+ </div>
210
+ </div>
211
+ </div>
212
+ </section>
213
+
214
+ <!-- Open Source Section -->
215
+ <section class="py-16 px-6 bg-black text-white">
216
+ <div class="container mx-auto text-center">
217
+ <div class="max-w-3xl mx-auto neobrutal-border p-8 bg-gray-900">
218
+ <div class="w-20 h-20 bg-yellow-400 text-black flex items-center justify-center neobrutal-border-thin mx-auto mb-6">
219
+ <i class="fab fa-github text-3xl"></i>
220
+ </div>
221
+ <h2 class="text-3xl font-bold mb-4">Pointer is committed to open source</h2>
222
+ <p class="text-xl mb-6">with an official release coming soon</p>
223
+ <a href="#" class="inline-block px-6 py-3 bg-yellow-400 text-black font-bold neobrutal-border-thin hover:bg-yellow-300 neobrutal-btn">
224
+ Star on GitHub
225
+ </a>
226
+ </div>
227
+ </div>
228
+ </section>
229
+
230
+ <!-- CTA Section -->
231
+ <section class="py-16 px-6">
232
+ <div class="container mx-auto">
233
+ <div class="bg-white p-8 neobrutal-border max-w-4xl mx-auto">
234
+ <div class="text-center">
235
+ <h2 class="text-3xl font-bold mb-4">Get Started with Pointer</h2>
236
+ <p class="text-xl mb-8">Join the private beta today and be among the first to experience the future of agentic computing.</p>
237
+ <a href="#" class="inline-block px-8 py-4 bg-blue-600 text-white font-bold text-lg neobrutal-border-thin hover:bg-blue-500 neobrutal-btn">
238
+ Join Private Beta
239
+ </a>
240
+ </div>
241
+ </div>
242
+ </div>
243
+ </section>
244
+
245
+ <!-- Footer -->
246
+ <footer class="bg-white py-8 px-6 neobrutal-border-t">
247
+ <div class="container mx-auto">
248
+ <div class="flex flex-col md:flex-row justify-between items-center">
249
+ <div class="flex items-center space-x-2 mb-4 md:mb-0">
250
+ <div class="w-8 h-8 bg-black flex items-center justify-center neobrutal-border-thin">
251
+ <span class="text-white font-bold">P</span>
252
+ </div>
253
+ <span class="font-bold">Pointer</span>
254
+ </div>
255
+
256
+ <div class="flex space-x-6 mb-4 md:mb-0">
257
+ <a href="#" class="hover:text-blue-600"><i class="fab fa-twitter text-xl"></i></a>
258
+ <a href="#" class="hover:text-blue-600"><i class="fab fa-github text-xl"></i></a>
259
+ <a href="#" class="hover:text-blue-600"><i class="fab fa-discord text-xl"></i></a>
260
+ <a href="#" class="hover:text-blue-600"><i class="fab fa-linkedin text-xl"></i></a>
261
+ </div>
262
+
263
+ <div class="text-sm">
264
+ © 2025 Pointer. All rights reserved.
265
+ </div>
266
+ </div>
267
+ </div>
268
+ </footer>
269
+
270
+ <!-- Floating Pointer -->
271
+ <div class="fixed bottom-8 right-8 w-16 h-16 bg-yellow-400 neobrutal-border-thin rounded-full flex items-center justify-center cursor-pointer hover:bg-yellow-300 neobrutal-btn">
272
+ <i class="fas fa-robot text-2xl"></i>
273
+ </div>
274
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=imjliao/pointer-page" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
275
+ </html>