Changes to tarsight.scroll.pub

root
root
9 days ago
Initial commit
body.html
Changed around line 1
+
+
+
+
+
+
+
+
+
+

Automate Your Phone. Hands-Free.

+

Computer vision automation for the future. Like Zapier, but for your eyes.

+
+
+
+
+
+
+
+
+
+
+
+

Features

+
+
+
👁️
+

Visual Recognition

+

Detect and respond to any visual element on your screen

+
+
+
🤖
+

Smart Automation

+

Create complex workflows triggered by visual events

+
+
+
📱
+

Cross-Device

+

Works seamlessly across all your devices

+
+
+
+
+
+

How It Works

+
+
+
1
+

Define Visual Trigger

+

Select any visual element as your automation trigger

+
+
+
2
+

Set Actions

+

Choose what happens when the trigger is detected

+
+
+
3
+

Let It Run

+

Sit back and watch your automation work

+
+
+
+
+
+
+
+
+ in
+ git
+
+
+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://tarsight.scroll.pub
+ metaTags
+ editButton /edit.html
+ title TarSight - Automate Your World Through Computer Vision
+ style.css
+ body.html
+ script.js
prompt.json
Changed around line 1
+ {
+ "id": "msg_01XtvV58qWb8Cii2HVeuoSEj",
+ "type": "message",
+ "role": "assistant",
+ "model": "claude-3-5-sonnet-20241022",
+ "content": [
+ {
+ "type": "text",
+ "text": "I'll create a sleek, futuristic website for this computer vision automation platform. For the domain, I suggest:\n\n---domain---\ntarsight.scroll.pub\n\n---index.scroll---\nbuildHtml\nbaseUrl https://tarsight.scroll.pub\nmetaTags\neditButton /edit.html\ntitle TarSight - Automate Your World Through Computer Vision\nstyle.css\nbody.html\nscript.js\n\n---body.html---\n
\n \n
\n\n
\n
\n
\n

Automate Your Phone. Hands-Free.

\n

Computer vision automation for the future. Like Zapier, but for your eyes.

\n \n
\n
\n
\n
\n
\n
\n
\n
\n\n
\n

Features

\n
\n
\n
👁️
\n

Visual Recognition

\n

Detect and respond to any visual element on your screen

\n
\n
\n
🤖
\n

Smart Automation

\n

Create complex workflows triggered by visual events

\n
\n
\n
📱
\n

Cross-Device

\n

Works seamlessly across all your devices

\n
\n
\n
\n\n
\n

How It Works

\n
\n
\n
1
\n

Define Visual Trigger

\n

Select any visual element as your automation trigger

\n
\n
\n
2
\n

Set Actions

\n

Choose what happens when the trigger is detected

\n
\n
\n
3
\n

Let It Run

\n

Sit back and watch your automation work

\n
\n
\n
\n
\n\n\n\n---style.css---\n:root {\n --primary-color: #6e44ff;\n --secondary-color: #2a2a4a;\n --accent-color: #00f7ff;\n --background: #0a0a1f;\n --text-color: #ffffff;\n --card-bg: rgba(255, 255, 255, 0.05);\n}\n\n* {\n margin: 0;\n padding: 0;\n box-sizing: border-box;\n}\n\nbody {\n font-family: system-ui, -apple-system, sans-serif;\n background: var(--background);\n color: var(--text-color);\n line-height: 1.6;\n}\n\nheader {\n position: fixed;\n width: 100%;\n top: 0;\n z-index: 1000;\n backdrop-filter: blur(10px);\n background: rgba(10, 10, 31, 0.8);\n}\n\nnav {\n max-width: 1200px;\n margin: 0 auto;\n padding: 1rem 2rem;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.logo {\n font-size: 1.5rem;\n font-weight: bold;\n background: linear-gradient(45deg, var(--primary-color), var(--accent-color));\n -webkit-background-clip: text;\n -webkit-text-fill-color: transparent;\n}\n\n.nav-links a {\n color: var(--text-color);\n text-decoration: none;\n margin-left: 2rem;\n transition: color 0.3s ease;\n}\n\n.nav-links a:hover {\n color: var(--accent-color);\n}\n\n.hero {\n min-height: 100vh;\n display: flex;\n align-items: center;\n padding: 6rem 2rem 2rem;\n position: relative;\n overflow: hidden;\n}\n\n.hero::before {\n content: '';\n position: absolute;\n width: 100%;\n height: 100%;\n background: radial-gradient(circle at 50% 50%, var(--primary-color) 0%, transparent 70%);\n opacity: 0.1;\n z-index: -1;\n}\n\n.hero-content {\n flex: 1;\n max-width: 600px;\n}\n\nh1 {\n font-size: 4rem;\n margin-bottom: 1.5rem;\n line-height: 1.2;\n background: linear-gradient(45deg, var(--text-color), var(--accent-color));\n -webkit-background-clip: text;\n -webkit-text-fill-color: transparent;\n}\n\n.cta-button {\n padding: 1rem 2rem;\n font-size: 1.2rem;\n border: none;\n border-radius: 50px;\n background: linear-gradient(45deg, var(--primary-color), var(--accent-color));\n color: var(--text-color);\n cursor: pointer;\n transition: transform 0.3s ease;\n}\n\n.cta-button:hover {\n transform: scale(1.05);\n}\n\n.floating-phone {\n width: 300px;\n height: 600px;\n border: 2px solid var(--accent-color);\n border-radius: 30px;\n position: relative;\n animation: float 6s ease-in-out infinite;\n}\n\n@keyframes float {\n 0%, 100% { transform: translateY(0); }\n 50% { transform: translateY(-20px); }\n}\n\n.scanning-line {\n position: absolute;\n width: 100%;\n height: 2px;\n background: var(--accent-color);\n top: 0;\n animation: scan 2s linear infinite;\n}\n\n@keyframes scan {\n 0% { top: 0; }\n 100% { top: 100%; }\n}\n\n.feature-grid {\n display: grid;\n grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n gap: 2rem;\n padding: 2rem;\n}\n\n.feature-card {\n background: var(--card-bg);\n padding: 2rem;\n border-radius: 15px;\n backdrop-filter: blur(10px);\n border: 1px solid rgba(255, 255, 255, 0.1);\n transition: transform 0.3s ease;\n}\n\n.feature-card:hover {\n transform: translateY(-5px);\n}\n\n.feature-icon {\n font-size: 2rem;\n margin-bottom: 1rem;\n}\n\nsection {\n padding: 5rem 2rem;\n}\n\nh2 {\n text-align: center;\n margin-bottom: 3rem;\n font-size: 2.5rem;\n}\n\n.steps {\n display: flex;\n justify-content: space-around;\n flex-wrap: wrap;\n gap: 2rem;\n}\n\n.step {\n flex: 1;\n min-width: 250px;\n text-align: center;\n}\n\n.step-number {\n width: 50px;\n height: 50px;\n border-radius: 50%;\n background: var(--primary-color);\n display: flex;\n align-items: center;\n justify-content: center;\n margin: 0 auto 1rem;\n font-weight: bold;\n}\n\nfooter {\n background: var(--secondary-color);\n padding: 2rem;\n margin-top: 4rem;\n}\n\n.footer-content {\n max-width: 1200px;\n margin: 0 auto;\n display: flex;\n justify-content: space-between;\n align-items: center;\n}\n\n.footer-links a, .footer-social a {\n color: var(--text-color);\n text-decoration: none;\n margin: 0 1rem;\n opacity: 0.8;\n transition: opacity 0.3s ease;\n}\n\n.footer-links a:hover, .footer-social a:hover {\n opacity: 1;\n}\n\n@media (max-width: 768px) {\n h1 {\n font-size: 2.5rem;\n }\n \n .hero {\n flex-direction: column;\n text-align: center;\n }\n \n .floating-phone {\n width: 200px;\n height: 400px;\n margin-top: 2rem;\n }\n \n .footer-content {\n flex-direction: column;\n gap: 1rem;\n }\n}\n\n---script.js---\ndocument.addEventListener('DOMContentLoaded', function() {\n // Smooth scrolling for anchor links\n document.querySelectorAll('a[href^=\"#\"]').forEach(anchor => {\n anchor.addEventListener('click', function(e) {\n e.preventDefault();\n const targetId = this.getAttribute('href');\n const target = document.querySelector(targetId);\n if (target) {\n target.scrollIntoView({\n behavior: 'smooth',\n block: 'start'\n });\n }\n });\n });\n\n // Intersection Observer for fade-in animations\n const observer = new IntersectionObserver((entries) => {\n entries.forEach(entry => {\n if (entry.isIntersecting) {\n entry.target.classList.add('visible');\n }\n });\n }, {\n threshold: 0.1\n });\n\n // Observe all sections\n document.querySelectorAll('section').forEach((section) => {\n observer.observe(section);\n });\n\n // Add parallax effect to hero section\n window.addEventListener('scroll', () => {\n const scrolled = window.pageYOffset;\n const hero = document.querySelector('.hero-visual');\n if (hero) {\n hero.style.transform = `translateY(${scrolled * 0.3}px)`;\n }\n });\n});\n\n---end---"
+ }
+ ],
+ "stop_reason": "end_turn",
+ "stop_sequence": null,
+ "usage": {
+ "input_tokens": 295,
+ "cache_creation_input_tokens": 0,
+ "cache_read_input_tokens": 0,
+ "output_tokens": 2996
+ }
+ }
readme.scroll
Changed around line 1
+ # tarsight.scroll.pub
+
+ website generated by Claude from prompt: tars is zapier but on computer vision. automate your phone ahnds free. make it futusutics
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', function() {
+ // Smooth scrolling for anchor links
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
+ anchor.addEventListener('click', function(e) {
+ e.preventDefault();
+ const targetId = this.getAttribute('href');
+ const target = document.querySelector(targetId);
+ if (target) {
+ target.scrollIntoView({
+ behavior: 'smooth',
+ block: 'start'
+ });
+ }
+ });
+ });
+
+ // Intersection Observer for fade-in animations
+ const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.classList.add('visible');
+ }
+ });
+ }, {
+ threshold: 0.1
+ });
+
+ // Observe all sections
+ document.querySelectorAll('section').forEach((section) => {
+ observer.observe(section);
+ });
+
+ // Add parallax effect to hero section
+ window.addEventListener('scroll', () => {
+ const scrolled = window.pageYOffset;
+ const hero = document.querySelector('.hero-visual');
+ if (hero) {
+ hero.style.transform = `translateY(${scrolled * 0.3}px)`;
+ }
+ });
+ });
style.css
Changed around line 1
+ :root {
+ --primary-color: #6e44ff;
+ --secondary-color: #2a2a4a;
+ --accent-color: #00f7ff;
+ --background: #0a0a1f;
+ --text-color: #ffffff;
+ --card-bg: rgba(255, 255, 255, 0.05);
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: system-ui, -apple-system, sans-serif;
+ background: var(--background);
+ color: var(--text-color);
+ line-height: 1.6;
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ top: 0;
+ z-index: 1000;
+ backdrop-filter: blur(10px);
+ background: rgba(10, 10, 31, 0.8);
+ }
+
+ nav {
+ max-width: 1200px;
+ margin: 0 auto;
+ padding: 1rem 2rem;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: bold;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .nav-links a {
+ color: var(--text-color);
+ text-decoration: none;
+ margin-left: 2rem;
+ transition: color 0.3s ease;
+ }
+
+ .nav-links a:hover {
+ color: var(--accent-color);
+ }
+
+ .hero {
+ min-height: 100vh;
+ display: flex;
+ align-items: center;
+ padding: 6rem 2rem 2rem;
+ position: relative;
+ overflow: hidden;
+ }
+
+ .hero::before {
+ content: '';
+ position: absolute;
+ width: 100%;
+ height: 100%;
+ background: radial-gradient(circle at 50% 50%, var(--primary-color) 0%, transparent 70%);
+ opacity: 0.1;
+ z-index: -1;
+ }
+
+ .hero-content {
+ flex: 1;
+ max-width: 600px;
+ }
+
+ h1 {
+ font-size: 4rem;
+ margin-bottom: 1.5rem;
+ line-height: 1.2;
+ background: linear-gradient(45deg, var(--text-color), var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ }
+
+ .cta-button {
+ padding: 1rem 2rem;
+ font-size: 1.2rem;
+ border: none;
+ border-radius: 50px;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ color: var(--text-color);
+ cursor: pointer;
+ transition: transform 0.3s ease;
+ }
+
+ .cta-button:hover {
+ transform: scale(1.05);
+ }
+
+ .floating-phone {
+ width: 300px;
+ height: 600px;
+ border: 2px solid var(--accent-color);
+ border-radius: 30px;
+ position: relative;
+ animation: float 6s ease-in-out infinite;
+ }
+
+ @keyframes float {
+ 0%, 100% { transform: translateY(0); }
+ 50% { transform: translateY(-20px); }
+ }
+
+ .scanning-line {
+ position: absolute;
+ width: 100%;
+ height: 2px;
+ background: var(--accent-color);
+ top: 0;
+ animation: scan 2s linear infinite;
+ }
+
+ @keyframes scan {
+ 0% { top: 0; }
+ 100% { top: 100%; }
+ }
+
+ .feature-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ padding: 2rem;
+ }
+
+ .feature-card {
+ background: var(--card-bg);
+ padding: 2rem;
+ border-radius: 15px;
+ backdrop-filter: blur(10px);
+ border: 1px solid rgba(255, 255, 255, 0.1);
+ transition: transform 0.3s ease;
+ }
+
+ .feature-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .feature-icon {
+ font-size: 2rem;
+ margin-bottom: 1rem;
+ }
+
+ section {
+ padding: 5rem 2rem;
+ }
+
+ h2 {
+ text-align: center;
+ margin-bottom: 3rem;
+ font-size: 2.5rem;
+ }
+
+ .steps {
+ display: flex;
+ justify-content: space-around;
+ flex-wrap: wrap;
+ gap: 2rem;
+ }
+
+ .step {
+ flex: 1;
+ min-width: 250px;
+ text-align: center;
+ }
+
+ .step-number {
+ width: 50px;
+ height: 50px;
+ border-radius: 50%;
+ background: var(--primary-color);
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ margin: 0 auto 1rem;
+ font-weight: bold;
+ }
+
+ footer {
+ background: var(--secondary-color);
+ padding: 2rem;
+ margin-top: 4rem;
+ }
+
+ .footer-content {
+ max-width: 1200px;
+ margin: 0 auto;
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ }
+
+ .footer-links a, .footer-social a {
+ color: var(--text-color);
+ text-decoration: none;
+ margin: 0 1rem;
+ opacity: 0.8;
+ transition: opacity 0.3s ease;
+ }
+
+ .footer-links a:hover, .footer-social a:hover {
+ opacity: 1;
+ }
+
+ @media (max-width: 768px) {
+ h1 {
+ font-size: 2.5rem;
+ }
+
+ .hero {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ .floating-phone {
+ width: 200px;
+ height: 400px;
+ margin-top: 2rem;
+ }
+
+ .footer-content {
+ flex-direction: column;
+ gap: 1rem;
+ }
+ }