Changes to matchplay.scroll.pub

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

Find Your Perfect Match

+

Connect with tennis and badminton players in your area, at your skill level

+
+
+
+
+
+
+
+

Why Choose MatchPlay

+
+
+
🎾
+

Skill Matching

+

Find players at your level for competitive and fun matches

+
+
+
📍
+

Location Based

+

Discover players and courts near you

+
+
+
📅
+

Easy Scheduling

+

Coordinate matches with built-in calendar integration

+
+
+
🤝
+

Verified Players

+

Trust our community of verified sports enthusiasts

+
+
+
+
+
+

How It Works

+
+
+
1
+

Create Profile

+

Set up your profile with your skill level and preferences

+
+
+
2
+

Find Players

+

Browse nearby players and send match requests

+
+
+
3
+

Play!

+

Meet up and enjoy your game

+
+
+
+
+
+

Ready to Play?

+

Download MatchPlay and start finding partners today

+
+
+
+
+
+
+
+
+
+
+

MatchPlay

+

Connecting sports enthusiasts worldwide

+
+
+

Links

+
    +
    +
    +
    +

    Contact

    +
      +
      +
      +
      +
      index.scroll
      Changed around line 1
      + buildHtml
      + baseUrl https://matchplay.scroll.pub
      + metaTags
      + description Find your perfect tennis or badminton partner nearby. Join MatchPlay to connect with players at your skill level and schedule matches easily.
      + keywords tennis partner, badminton partner, find tennis players, sports matching app, tennis buddy
      + editButton /edit.html
      + title MatchPlay - Find Your Perfect Tennis or Badminton Partner
      + style.css
      + body.html
      + script.js
      readme.scroll
      Changed around line 1
      + # matchplay.scroll.pub
      + Website generated by Claude from prompt: create a landing page for app that helps people to find a partner to play tennis or badminton
      script.js
      Changed around line 1
      + document.addEventListener('DOMContentLoaded', () => {
      + // Mobile menu toggle
      + const mobileMenu = document.querySelector('.mobile-menu');
      + const navLinks = document.querySelector('.nav-links');
      +
      + mobileMenu.addEventListener('click', () => {
      + navLinks.classList.toggle('active');
      +
      + // Animate hamburger to X
      + const spans = mobileMenu.querySelectorAll('span');
      + spans.forEach(span => span.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) {
      + navLinks.classList.remove('active');
      + target.scrollIntoView({
      + behavior: 'smooth',
      + block: 'start'
      + });
      + }
      + });
      + });
      +
      + // Intersection Observer for fade-in animations
      + const observerOptions = {
      + threshold: 0.1,
      + rootMargin: '0px 0px -50px 0px'
      + };
      +
      + const observer = new IntersectionObserver((entries) => {
      + entries.forEach(entry => {
      + if (entry.isIntersecting) {
      + entry.target.classList.add('visible');
      + }
      + });
      + }, observerOptions);
      +
      + // Observe all sections
      + document.querySelectorAll('section').forEach(section => {
      + section.classList.add('fade-in');
      + observer.observe(section);
      + });
      + });
      style.css
      Changed around line 1
      + :root {
      + --primary-color: #4CAF50;
      + --secondary-color: #2196F3;
      + --text-color: #333;
      + --light-gray: #f5f5f5;
      + --spacing: 2rem;
      + }
      +
      + * {
      + margin: 0;
      + padding: 0;
      + box-sizing: border-box;
      + }
      +
      + body {
      + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      + line-height: 1.6;
      + color: var(--text-color);
      + }
      +
      + /* Header & Navigation */
      + header {
      + position: fixed;
      + width: 100%;
      + 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 var(--spacing);
      + max-width: 1200px;
      + margin: 0 auto;
      + }
      +
      + .logo {
      + font-size: 1.5rem;
      + font-weight: bold;
      + color: var(--primary-color);
      + }
      +
      + .nav-links {
      + display: flex;
      + list-style: none;
      + gap: 2rem;
      + }
      +
      + .nav-links a {
      + text-decoration: none;
      + color: var(--text-color);
      + transition: color 0.3s ease;
      + }
      +
      + .nav-links a:hover {
      + color: var(--primary-color);
      + }
      +
      + .mobile-menu {
      + display: none;
      + }
      +
      + /* Hero Section */
      + .hero {
      + min-height: 100vh;
      + display: flex;
      + align-items: center;
      + padding: 6rem var(--spacing) var(--spacing);
      + background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
      + }
      +
      + .hero-content {
      + flex: 1;
      + max-width: 600px;
      + }
      +
      + .hero h1 {
      + font-size: 3.5rem;
      + margin-bottom: 1rem;
      + line-height: 1.2;
      + }
      +
      + .hero p {
      + font-size: 1.25rem;
      + margin-bottom: 2rem;
      + }
      +
      + .cta-buttons {
      + display: flex;
      + gap: 1rem;
      + }
      +
      + .btn {
      + padding: 1rem 2rem;
      + border-radius: 50px;
      + text-decoration: none;
      + font-weight: bold;
      + transition: transform 0.3s ease;
      + }
      +
      + .btn:hover {
      + transform: translateY(-2px);
      + }
      +
      + .btn.primary {
      + background: var(--primary-color);
      + color: white;
      + }
      +
      + .btn.secondary {
      + background: transparent;
      + border: 2px solid var(--primary-color);
      + color: var(--primary-color);
      + }
      +
      + /* Features Section */
      + .features {
      + padding: var(--spacing);
      + background: white;
      + }
      +
      + .feature-grid {
      + display: grid;
      + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      + gap: 2rem;
      + margin-top: 3rem;
      + }
      +
      + .feature-card {
      + padding: 2rem;
      + border-radius: 15px;
      + background: var(--light-gray);
      + transition: transform 0.3s ease;
      + }
      +
      + .feature-card:hover {
      + transform: translateY(-5px);
      + }
      +
      + .icon {
      + font-size: 2rem;
      + margin-bottom: 1rem;
      + }
      +
      + /* How It Works Section */
      + .how-it-works {
      + padding: var(--spacing);
      + background: var(--light-gray);
      + }
      +
      + .steps {
      + display: flex;
      + justify-content: space-around;
      + flex-wrap: wrap;
      + gap: 2rem;
      + margin-top: 3rem;
      + }
      +
      + .step {
      + flex: 1;
      + min-width: 250px;
      + text-align: center;
      + }
      +
      + .step-number {
      + width: 40px;
      + height: 40px;
      + background: var(--primary-color);
      + color: white;
      + border-radius: 50%;
      + display: flex;
      + align-items: center;
      + justify-content: center;
      + margin: 0 auto 1rem;
      + }
      +
      + /* Download Section */
      + .download {
      + padding: var(--spacing);
      + text-align: center;
      + background: linear-gradient(135deg, #c3cfe2 0%, #f5f7fa 100%);
      + }
      +
      + .store-buttons {
      + display: flex;
      + justify-content: center;
      + gap: 1rem;
      + margin-top: 2rem;
      + }
      +
      + .store-btn {
      + padding: 1rem 2rem;
      + border: none;
      + border-radius: 8px;
      + background: #333;
      + color: white;
      + cursor: pointer;
      + transition: transform 0.3s ease;
      + }
      +
      + .store-btn:hover {
      + transform: translateY(-2px);
      + }
      +
      + /* Footer */
      + footer {
      + background: #333;
      + color: white;
      + padding: var(--spacing);
      + }
      +
      + .footer-content {
      + display: grid;
      + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      + gap: 2rem;
      + max-width: 1200px;
      + margin: 0 auto;
      + }
      +
      + .footer-section h4 {
      + margin-bottom: 1rem;
      + }
      +
      + .footer-section ul {
      + list-style: none;
      + }
      +
      + .footer-section a {
      + color: white;
      + text-decoration: none;
      + transition: color 0.3s ease;
      + }
      +
      + .footer-section a:hover {
      + color: var(--primary-color);
      + }
      +
      + /* Mobile Responsiveness */
      + @media (max-width: 768px) {
      + .mobile-menu {
      + display: block;
      + background: none;
      + border: none;
      + cursor: pointer;
      + }
      +
      + .mobile-menu span {
      + display: block;
      + width: 25px;
      + height: 3px;
      + background: var(--text-color);
      + margin: 5px 0;
      + transition: 0.3s;
      + }
      +
      + .nav-links {
      + display: none;
      + position: absolute;
      + top: 100%;
      + left: 0;
      + right: 0;
      + background: white;
      + flex-direction: column;
      + padding: 1rem;
      + text-align: center;
      + }
      +
      + .nav-links.active {
      + display: flex;
      + }
      +
      + .hero {
      + flex-direction: column;
      + text-align: center;
      + padding-top: 8rem;
      + }
      +
      + .hero h1 {
      + font-size: 2.5rem;
      + }
      +
      + .cta-buttons {
      + justify-content: center;
      + }
      +
      + .store-buttons {
      + flex-direction: column;
      + align-items: center;
      + }
      + }