Changes to joindesk.scroll.pub

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

Your New Workspace Awaits

+

Join our thriving community of professionals

+
+
+
+

Welcome to Our Space

+
+
+
🌟
+

Premium Location

+

Central business district with easy access

+
+
+
🤝
+

Community

+

Network with like-minded professionals

+
+
+
+

High-Speed Internet

+

Lightning-fast fiber connection

+
+
+
+
+
+

Amenities

+
+
24/7 Access
+
Meeting Rooms
+
Coffee Bar
+
Phone Booths
+
Printing Services
+
Lounge Areas
+
+
+
+
+

Apply Now

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

Location

+

123 Business Avenue
Innovation District
City, State 12345

+
+
+

Contact

+

hello@joindesk.scroll.pub
+1 (555) 123-4567

+
+
+

Follow Us

+
+
+
index.scroll
Changed around line 1
+ buildHtml
+ baseUrl https://joindesk.scroll.pub
+ metaTags
+ description "Apply to join our vibrant coworking community. Flexible workspace solutions for professionals and teams."
+ keywords "coworking space, workspace application, office space, professional workspace, desk rental"
+ editButton /edit.html
+ title Join Our Coworking Space | JoinDesk
+ style.css
+ body.html
+ script.js
readme.scroll
Changed around line 1
+ # joindesk.scroll.pub
+ Website generated by Claude from prompt: I want a website that people who intend to join our coworking space can apply using. Be creative
script.js
Changed around line 1
+ document.addEventListener('DOMContentLoaded', function() {
+ // Mobile menu toggle
+ const menuToggle = document.querySelector('.menu-toggle');
+ const navLinks = document.querySelector('.nav-links');
+
+ menuToggle.addEventListener('click', function() {
+ navLinks.style.display = navLinks.style.display === 'flex' ? 'none' : 'flex';
+ this.classList.toggle('active');
+ });
+
+ // Smooth scroll for navigation links
+ document.querySelectorAll('a[href^="#"]').forEach(anchor => {
+ anchor.addEventListener('click', function(e) {
+ e.preventDefault();
+ const target = document.querySelector(this.getAttribute('href'));
+
+ if (target) {
+ window.scrollTo({
+ top: target.offsetTop - 80,
+ behavior: 'smooth'
+ });
+ }
+
+ // Close mobile menu if open
+ if (window.innerWidth <= 768) {
+ navLinks.style.display = 'none';
+ menuToggle.classList.remove('active');
+ }
+ });
+ });
+
+ // Form submission handling
+ const applicationForm = document.getElementById('applicationForm');
+
+ applicationForm.addEventListener('submit', function(e) {
+ e.preventDefault();
+
+ // Form validation
+ const requiredFields = applicationForm.querySelectorAll('[required]');
+ let isValid = true;
+
+ requiredFields.forEach(field => {
+ if (!field.value.trim()) {
+ isValid = false;
+ field.style.borderColor = '#ff0000';
+ } else {
+ field.style.borderColor = '#eee';
+ }
+ });
+
+ if (isValid) {
+ // Show success message
+ const submitButton = applicationForm.querySelector('.submit-button');
+ const originalText = submitButton.textContent;
+
+ submitButton.textContent = 'Application Submitted!';
+ submitButton.style.backgroundColor = '#4CAF50';
+
+ // Reset form and button after delay
+ setTimeout(() => {
+ applicationForm.reset();
+ submitButton.textContent = originalText;
+ submitButton.style.backgroundColor = '';
+ }, 3000);
+ }
+ });
+
+ // Intersection Observer for animations
+ const observerOptions = {
+ threshold: 0.1,
+ rootMargin: '0px 0px -50px 0px'
+ };
+
+ const observer = new IntersectionObserver((entries) => {
+ entries.forEach(entry => {
+ if (entry.isIntersecting) {
+ entry.target.style.opacity = '1';
+ entry.target.style.transform = 'translateY(0)';
+ }
+ });
+ }, observerOptions);
+
+ // Observe sections for fade-in effect
+ document.querySelectorAll('section').forEach(section => {
+ section.style.opacity = '0';
+ section.style.transform = 'translateY(20px)';
+ section.style.transition = 'all 0.6s ease-out';
+ observer.observe(section);
+ });
+ });
style.css
Changed around line 1
+ :root {
+ --primary-color: #2a6bf2;
+ --secondary-color: #1a1a1a;
+ --accent-color: #ffd700;
+ --text-color: #333333;
+ --light-bg: #f5f7fa;
+ --transition: all 0.3s ease;
+ }
+
+ * {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ }
+
+ body {
+ font-family: 'Inter', system-ui, -apple-system, sans-serif;
+ line-height: 1.6;
+ color: var(--text-color);
+ }
+
+ header {
+ position: fixed;
+ width: 100%;
+ top: 0;
+ background: rgba(255, 255, 255, 0.95);
+ backdrop-filter: blur(10px);
+ z-index: 1000;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
+ }
+
+ nav {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ padding: 1rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .logo {
+ font-size: 1.5rem;
+ font-weight: 700;
+ color: var(--primary-color);
+ }
+
+ .nav-links a {
+ margin-left: 2rem;
+ text-decoration: none;
+ color: var(--secondary-color);
+ transition: var(--transition);
+ }
+
+ .nav-links a:hover {
+ color: var(--primary-color);
+ }
+
+ .menu-toggle {
+ display: none;
+ }
+
+ main {
+ margin-top: 4rem;
+ }
+
+ .hero {
+ height: 90vh;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ text-align: center;
+ background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
+ padding: 2rem;
+ }
+
+ .hero h1 {
+ font-size: 3.5rem;
+ margin-bottom: 1rem;
+ background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
+ -webkit-background-clip: text;
+ -webkit-text-fill-color: transparent;
+ animation: gradientFlow 8s ease infinite;
+ }
+
+ @keyframes gradientFlow {
+ 0% { background-position: 0% 50%; }
+ 50% { background-position: 100% 50%; }
+ 100% { background-position: 0% 50%; }
+ }
+
+ .cta-button {
+ display: inline-block;
+ padding: 1rem 2rem;
+ background: var(--primary-color);
+ color: white;
+ text-decoration: none;
+ border-radius: 30px;
+ margin-top: 2rem;
+ transition: var(--transition);
+ box-shadow: 0 4px 15px rgba(42, 107, 242, 0.2);
+ }
+
+ .cta-button:hover {
+ transform: translateY(-2px);
+ box-shadow: 0 6px 20px rgba(42, 107, 242, 0.3);
+ }
+
+ section {
+ padding: 5rem 5%;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .features-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
+ gap: 2rem;
+ margin-top: 3rem;
+ }
+
+ .feature {
+ text-align: center;
+ padding: 2rem;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ transition: var(--transition);
+ }
+
+ .feature:hover {
+ transform: translateY(-5px);
+ box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
+ }
+
+ .feature-icon {
+ font-size: 2.5rem;
+ margin-bottom: 1rem;
+ }
+
+ .amenities-list {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 1.5rem;
+ margin-top: 2rem;
+ }
+
+ .amenity {
+ background: var(--light-bg);
+ padding: 1rem;
+ border-radius: 8px;
+ text-align: center;
+ transition: var(--transition);
+ }
+
+ .amenity:hover {
+ background: var(--primary-color);
+ color: white;
+ transform: scale(1.05);
+ }
+
+ .application-form {
+ max-width: 600px;
+ margin: 2rem auto;
+ padding: 2rem;
+ background: white;
+ border-radius: 10px;
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
+ }
+
+ .form-group {
+ margin-bottom: 1.5rem;
+ }
+
+ label {
+ display: block;
+ margin-bottom: 0.5rem;
+ font-weight: 500;
+ }
+
+ input, select, textarea {
+ width: 100%;
+ padding: 0.8rem;
+ border: 2px solid #eee;
+ border-radius: 6px;
+ transition: var(--transition);
+ }
+
+ input:focus, select:focus, textarea:focus {
+ outline: none;
+ border-color: var(--primary-color);
+ }
+
+ .submit-button {
+ width: 100%;
+ padding: 1rem;
+ background: var(--primary-color);
+ color: white;
+ border: none;
+ border-radius: 6px;
+ cursor: pointer;
+ transition: var(--transition);
+ }
+
+ .submit-button:hover {
+ background: #1a5ad9;
+ }
+
+ footer {
+ background: var(--secondary-color);
+ color: white;
+ padding: 3rem 5%;
+ }
+
+ .footer-content {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 2rem;
+ max-width: 1200px;
+ margin: 0 auto;
+ }
+
+ .social-links a {
+ color: white;
+ text-decoration: none;
+ margin-right: 1rem;
+ transition: var(--transition);
+ }
+
+ .social-links a:hover {
+ color: var(--accent-color);
+ }
+
+ @media (max-width: 768px) {
+ .nav-links {
+ display: none;
+ }
+
+ .menu-toggle {
+ display: block;
+ background: none;
+ border: none;
+ cursor: pointer;
+ }
+
+ .menu-toggle span {
+ display: block;
+ width: 25px;
+ height: 3px;
+ background: var(--secondary-color);
+ margin: 5px 0;
+ transition: var(--transition);
+ }
+
+ .hero h1 {
+ font-size: 2.5rem;
+ }
+
+ section {
+ padding: 3rem 5%;
+ }
+ }