------------------------------------------------------------
commit b1c0461676fd0f7e57468c8c0e19c68528477155
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub>
Date: Fri Nov 15 18:26:12 2024 +0000
Updated index.scroll
diff --git a/index.scroll b/index.scroll
index 4442ed6..3d66dd1 100644
--- a/index.scroll
+++ b/index.scroll
@@ -1,4 +1,3 @@
buildHtml
-theme roboto
-Hello World my name is
\ No newline at end of file
+claude.html
------------------------------------------------------------
commit cc59f7ed8c4c9e8906be652076ac501f7c9e1c93
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub>
Date: Fri Nov 15 18:26:04 2024 +0000
Updated claude.html
diff --git a/claude.html b/claude.html
index e69de29..f7e19d6 100644
--- a/claude.html
+++ b/claude.html
@@ -0,0 +1,305 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <meta charset="UTF-8" />
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <title>xkarelin_ | Tech & VC</title>
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.2/gsap.min.js"></script>
+ <style>
+ :root {
+ --primary: #2563eb;
+ --dark: #1e293b;
+ --light: #f8fafc;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family:
+ system-ui,
+ -apple-system,
+ sans-serif;
+ line-height: 1.6;
+ color: var(--dark);
+ background: var(--light);
+ }
+
+ nav {
+ position: fixed;
+ width: 100%;
+ padding: 1.5rem;
+ background: rgba(255, 255, 255, 0.9);
+ backdrop-filter: blur(10px);
+ z-index: 100;
+ }
+
+ nav ul {
+ display: flex;
+ justify-content: center;
+ gap: 2rem;
+ list-style: none;
+ }
+
+ nav a {
+ text-decoration: none;
+ color: var(--dark);
+ font-weight: 500;
+ transition: color 0.3s;
+ }
+
+ nav a:hover {
+ color: var(--primary);
+ }
+
+ section {
+ min-height: 100vh;
+ padding: 6rem 2rem 4rem;
+ }
+
+ .hero {
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ gap: 2rem;
+ background: linear-gradient(135deg, #2563eb11, #2563eb22);
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ font-weight: 800;
+ opacity: 0;
+ transform: translateY(30px);
+ }
+
+ .hero p {
+ font-size: 1.25rem;
+ max-width: 600px;
+ opacity: 0;
+ transform: translateY(30px);
+ }
+
+ .expertise {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .expertise-card {
+ padding: 2rem;
+ border-radius: 8px;
+ background: white;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ transition: transform 0.3s;
+ opacity: 0;
+ transform: translateY(30px);
+ }
+
+ .expertise-card:hover {
+ transform: translateY(-5px);
+ }
+
+ .projects {
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .timeline {
+ position: relative;
+ max-width: 800px;
+ margin: 4rem auto;
+ }
+
+ .timeline-item {
+ margin: 2rem 0;
+ padding: 1.5rem;
+ border-radius: 8px;
+ background: white;
+ box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
+ opacity: 0;
+ transform: translateX(-30px);
+ }
+
+ .contact {
+ text-align: center;
+ }
+
+ .contact form {
+ max-width: 500px;
+ margin: 2rem auto;
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+ }
+
+ input,
+ textarea {
+ padding: 0.75rem;
+ border: 1px solid #e2e8f0;
+ border-radius: 4px;
+ font-family: inherit;
+ }
+
+ button {
+ padding: 0.75rem 1.5rem;
+ background: var(--primary);
+ color: white;
+ border: none;
+ border-radius: 4px;
+ cursor: pointer;
+ transition: background 0.3s;
+ }
+
+ button:hover {
+ background: #1d4ed8;
+ }
+
+ @media (max-width: 768px) {
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+ }
+ </style>
+ </head>
+ <body>
+ <nav>
+ <ul>
+ <li><a href="#home">Home</a></li>
+ <li><a href="#expertise">Expertise</a></li>
+ <li><a href="#projects">Projects</a></li>
+ <li><a href="#contact">Contact</a></li>
+ </ul>
+ </nav>
+
+ <section id="home" class="hero">
+ <h1>xkarelin_</h1>
+ <p>Tech Veteran & Startup Investor with 15 Years of Experience</p>
+ </section>
+
+ <section id="expertise">
+ <div class="expertise">
+ <div class="expertise-card">
+ <h3>Marketing Strategy</h3>
+ <p>
+ Helping startups build and execute effective growth strategies
+ through digital channels.
+ </p>
+ </div>
+ <div class="expertise-card">
+ <h3>Venture Capital</h3>
+ <p>
+ Identifying and investing in promising early-stage tech startups.
+ Portfolio management and advisory.
+ </p>
+ </div>
+ <div class="expertise-card">
+ <h3>Tech Development</h3>
+ <p>
+ 15 years of hands-on development experience across multiple tech
+ stacks and industries.
+ </p>
+ </div>
+ </div>
+ </section>
+
+ <section id="projects">
+ <div class="projects">
+ <h2>Project Timeline</h2>
+ <div class="timeline">
+ <div class="timeline-item">
+ <h3>2024</h3>
+ <p>Currently advising 5 tech startups in Series A/B stages</p>
+ </div>
+ <div class="timeline-item">
+ <h3>2020-2023</h3>
+ <p>Led technical strategy for multiple successful exits</p>
+ </div>
+ <div class="timeline-item">
+ <h3>2015-2020</h3>
+ <p>Built and scaled engineering teams across 3 startups</p>
+ </div>
+ </div>
+ </div>
+ </section>
+
+ <section id="contact" class="contact">
+ <h2>Get in Touch</h2>
+ <form id="contact-form">
+ <input type="email" placeholder="Your Email" required />
+ <textarea rows="4" placeholder="Your Message" required></textarea>
+ <button type="submit">Send Message</button>
+ </form>
+ </section>
+
+ <script>
+ // Smooth scroll
+ document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
+ anchor.addEventListener("click", function (e) {
+ e.preventDefault();
+ document.querySelector(this.getAttribute("href")).scrollIntoView({
+ behavior: "smooth",
+ });
+ });
+ });
+
+ // Animations
+ gsap.to(".hero h1", {
+ opacity: 1,
+ y: 0,
+ duration: 1,
+ delay: 0.5,
+ });
+
+ gsap.to(".hero p", {
+ opacity: 1,
+ y: 0,
+ duration: 1,
+ delay: 0.8,
+ });
+
+ // Expertise cards animation
+ gsap.utils.toArray(".expertise-card").forEach((card, i) => {
+ gsap.to(card, {
+ opacity: 1,
+ y: 0,
+ duration: 0.8,
+ delay: 0.2 * i,
+ scrollTrigger: {
+ trigger: card,
+ start: "top bottom-=100",
+ },
+ });
+ });
+
+ // Timeline items animation
+ gsap.utils.toArray(".timeline-item").forEach((item, i) => {
+ gsap.to(item, {
+ opacity: 1,
+ x: 0,
+ duration: 0.8,
+ delay: 0.2 * i,
+ scrollTrigger: {
+ trigger: item,
+ start: "top bottom-=100",
+ },
+ });
+ });
+
+ // Form submission
+ document
+ .getElementById("contact-form")
+ .addEventListener("submit", function (e) {
+ e.preventDefault();
+ alert("Message sent! (Demo only)");
+ this.reset();
+ });
+ </script>
+ </body>
+</html>
------------------------------------------------------------
commit b683401a374410add6c16b1dc246f4ca9441144d
Author: ffff:72.234.190.31 <ffff:72.234.190.31@hub.scroll.pub>
Date: Fri Nov 15 18:26:00 2024 +0000
Updated claude.html
diff --git a/claude.html b/claude.html
new file mode 100644
index 0000000..e69de29
------------------------------------------------------------
commit 93e43037b7794c5d3de89eaf6afe3e3d561d8df3
Author: root <root@hub.scroll.pub>
Date: Sun Nov 10 20:12:15 2024 +0000
initial blank_template template
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..bd1a52d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,8 @@
+.DS_Store
+*.html
+*.txt
+*.xml
+*.css
+*.js
+*.csv
+requests.scroll
\ No newline at end of file
diff --git a/index.scroll b/index.scroll
new file mode 100644
index 0000000..4442ed6
--- /dev/null
+++ b/index.scroll
@@ -0,0 +1,4 @@
+buildHtml
+theme roboto
+
+Hello World my name is
\ No newline at end of file