teddydupay.com — SEO fixes

Hi Abishek — clean, copy-paste versions of the fixes from Teddy's email (the emailed code got link-wrapped by Gmail; use these instead). All template-level. Nothing here touches appointments, prices, or the locked 2027 camp dates.

NAP used throughout: Teddy Dupay Basketball Academy · 302 W Kennedy Blvd, Tampa, FL 33606 (Carlton Building) · (813) 518-8739 · teddy@teddydupay.com

1. Add “Tampa” to the <title> tags

Meta descriptions already include Tampa/FL — leave those. Suggested title rewrites:

PageSuggested <title>
Home /Youth Basketball Training in Tampa, FL | Teddy Dupay Basketball Academy
/programs/summer-campsTampa Summer Basketball Camps (2027) | Teddy Dupay Basketball Academy
/programs/private-lessonsPrivate Basketball Lessons in Tampa | Teddy Dupay Basketball Academy
/programs/individual-classesBasketball Classes in Tampa, FL | Teddy Dupay Basketball Academy
/contact-usContact TDBA — Basketball Academy in Tampa, FL | (813) 518-8739

2. Clickable NAP block for the footer

Footer currently has nav + newsletter + copyright but no address/phone.

<address itemscope itemtype="https://schema.org/SportsActivityLocation">
  <strong itemprop="name">Teddy Dupay Basketball Academy</strong><br>
  <span itemprop="address" itemscope itemtype="https://schema.org/PostalAddress">
    <a href="https://maps.google.com/?q=302+W+Kennedy+Blvd,+Tampa,+FL+33606">
      <span itemprop="streetAddress">302 W Kennedy Blvd</span> (Carlton Building),
      <span itemprop="addressLocality">Tampa</span>, <span itemprop="addressRegion">FL</span> <span itemprop="postalCode">33606</span>
    </a>
  </span><br>
  <a href="tel:+18135188739" itemprop="telephone">(813) 518-8739</a> &middot;
  <a href="mailto:teddy@teddydupay.com" itemprop="email">teddy@teddydupay.com</a>
</address>

3. LocalBusiness JSON-LD → site <head> (all pages)

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": [
    "SportsActivityLocation",
    "LocalBusiness"
  ],
  "@id": "https://www.teddydupay.com/#business",
  "name": "Teddy Dupay Basketball Academy",
  "alternateName": "TDBA",
  "url": "https://www.teddydupay.com",
  "logo": "https://www.teddydupay.com/build/assets/favicon-BibTnYLV.png",
  "image": "https://www.teddydupay.com/build/assets/teddy-dupay-teaches-shooting-technique-tampa-DYfkozVc.webp",
  "description": "Premier youth basketball training in Tampa, FL. Individual classes, private lessons, memberships, camps and leagues led by former Florida Gators standout Teddy Dupay.",
  "telephone": "+1-813-518-8739",
  "email": "teddy@teddydupay.com",
  "priceRange": "$$",
  "address": {
    "@type": "PostalAddress",
    "streetAddress": "302 W Kennedy Blvd",
    "addressLocality": "Tampa",
    "addressRegion": "FL",
    "postalCode": "33606",
    "addressCountry": "US"
  },
  "geo": {
    "@type": "GeoCoordinates",
    "latitude": 27.9446,
    "longitude": -82.4618
  },
  "areaServed": {
    "@type": "City",
    "name": "Tampa"
  },
  "founder": {
    "@type": "Person",
    "name": "Teddy Dupay"
  },
  "sameAs": [
    "https://teddydupaybasketballacademy.com",
    "https://twitter.com/TeddyDupay",
    "https://www.facebook.com/OfficialTDBA/",
    "https://www.instagram.com/teddy_dupay/",
    "https://www.youtube.com/@TeddyDupay"
  ]
}
</script>

Optional real Google rating (4.9/133) — merge into the object above only while the homepage keeps showing its testimonials:

"aggregateRating": {
  "@type": "AggregateRating",
  "ratingValue": "4.9",
  "reviewCount": "133"
}

4. Event JSON-LD → <head> of /programs/summer-camps

The 6 locked 2027 camps. Mirrors the schema already indexed on teddydupaybasketballacademy.com/camps — ideally generate from the Events table so it stays live.

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "Event",
      "name": "Spring Break Basketball Camp — Tampa",
      "startDate": "2027-03-22T09:00:00-04:00",
      "endDate": "2027-03-24T13:00:00-04:00",
      "eventStatus": "https://schema.org/EventScheduled",
      "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
      "location": {
        "@type": "Place",
        "name": "Teddy Dupay Basketball Academy",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "302 W Kennedy Blvd",
          "addressLocality": "Tampa",
          "addressRegion": "FL",
          "postalCode": "33606",
          "addressCountry": "US"
        }
      },
      "organizer": {
        "@type": "Organization",
        "name": "Teddy Dupay Basketball Academy",
        "url": "https://www.teddydupay.com"
      },
      "performer": {
        "@type": "Person",
        "name": "Teddy Dupay"
      },
      "url": "https://www.teddydupay.com/programs/summer-camps",
      "image": "https://www.teddydupay.com/build/assets/teddy-dupay-teaches-shooting-technique-tampa-DYfkozVc.webp",
      "description": "Three-day spring-break basketball camp for kids in downtown Tampa. All ages, all skill levels. Step Up For Students accepted."
    },
    {
      "@type": "Event",
      "name": "Homeschool Point Guard, Ball-Handling & Basketball IQ Camp — Tampa",
      "startDate": "2027-05-24T09:00:00-04:00",
      "endDate": "2027-05-27T13:00:00-04:00",
      "eventStatus": "https://schema.org/EventScheduled",
      "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
      "location": {
        "@type": "Place",
        "name": "Teddy Dupay Basketball Academy",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "302 W Kennedy Blvd",
          "addressLocality": "Tampa",
          "addressRegion": "FL",
          "postalCode": "33606",
          "addressCountry": "US"
        }
      },
      "organizer": {
        "@type": "Organization",
        "name": "Teddy Dupay Basketball Academy",
        "url": "https://www.teddydupay.com"
      },
      "performer": {
        "@type": "Person",
        "name": "Teddy Dupay"
      },
      "url": "https://www.teddydupay.com/programs/summer-camps",
      "image": "https://www.teddydupay.com/build/assets/teddy-dupay-teaches-shooting-technique-tampa-DYfkozVc.webp",
      "description": "Weekday-daytime basketball camp built for homeschool families in Tampa. All positions welcome. Step Up For Students & PEP accepted."
    },
    {
      "@type": "Event",
      "name": "Basketball Summer Camp: TIP-OFF — Tampa",
      "startDate": "2027-06-01T09:00:00-04:00",
      "endDate": "2027-06-04T13:00:00-04:00",
      "eventStatus": "https://schema.org/EventScheduled",
      "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
      "location": {
        "@type": "Place",
        "name": "Teddy Dupay Basketball Academy",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "302 W Kennedy Blvd",
          "addressLocality": "Tampa",
          "addressRegion": "FL",
          "postalCode": "33606",
          "addressCountry": "US"
        }
      },
      "organizer": {
        "@type": "Organization",
        "name": "Teddy Dupay Basketball Academy",
        "url": "https://www.teddydupay.com"
      },
      "performer": {
        "@type": "Person",
        "name": "Teddy Dupay"
      },
      "url": "https://www.teddydupay.com/programs/summer-camps",
      "image": "https://www.teddydupay.com/build/assets/teddy-dupay-teaches-shooting-technique-tampa-DYfkozVc.webp",
      "description": "The classic TIP-OFF summer basketball camp in downtown Tampa. All ages, all skill levels. Step Up For Students accepted."
    },
    {
      "@type": "Event",
      "name": "TIP-OFF Summer Camp #2 — Tampa",
      "startDate": "2027-06-14T09:00:00-04:00",
      "endDate": "2027-06-17T13:00:00-04:00",
      "eventStatus": "https://schema.org/EventScheduled",
      "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
      "location": {
        "@type": "Place",
        "name": "Teddy Dupay Basketball Academy",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "302 W Kennedy Blvd",
          "addressLocality": "Tampa",
          "addressRegion": "FL",
          "postalCode": "33606",
          "addressCountry": "US"
        }
      },
      "organizer": {
        "@type": "Organization",
        "name": "Teddy Dupay Basketball Academy",
        "url": "https://www.teddydupay.com"
      },
      "performer": {
        "@type": "Person",
        "name": "Teddy Dupay"
      },
      "url": "https://www.teddydupay.com/programs/summer-camps",
      "image": "https://www.teddydupay.com/build/assets/teddy-dupay-teaches-shooting-technique-tampa-DYfkozVc.webp",
      "description": "The second TIP-OFF summer basketball camp session in downtown Tampa. All ages, all skill levels. Step Up For Students accepted."
    },
    {
      "@type": "Event",
      "name": "12th Annual All-Girls Basketball Summer Camp — Tampa",
      "startDate": "2027-06-21T09:00:00-04:00",
      "endDate": "2027-06-24T13:00:00-04:00",
      "eventStatus": "https://schema.org/EventScheduled",
      "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
      "location": {
        "@type": "Place",
        "name": "Teddy Dupay Basketball Academy",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "302 W Kennedy Blvd",
          "addressLocality": "Tampa",
          "addressRegion": "FL",
          "postalCode": "33606",
          "addressCountry": "US"
        }
      },
      "organizer": {
        "@type": "Organization",
        "name": "Teddy Dupay Basketball Academy",
        "url": "https://www.teddydupay.com"
      },
      "performer": {
        "@type": "Person",
        "name": "Teddy Dupay"
      },
      "url": "https://www.teddydupay.com/programs/summer-camps",
      "image": "https://www.teddydupay.com/build/assets/teddy-dupay-teaches-shooting-technique-tampa-DYfkozVc.webp",
      "description": "Tampa's longest-running all-girls basketball camp, in its 12th summer. All skill levels. Step Up For Students accepted."
    },
    {
      "@type": "Event",
      "name": "Shooting Camp (Ages 8-16) — Tampa",
      "startDate": "2027-06-28T09:00:00-04:00",
      "endDate": "2027-07-01T13:00:00-04:00",
      "eventStatus": "https://schema.org/EventScheduled",
      "eventAttendanceMode": "https://schema.org/OfflineEventAttendanceMode",
      "location": {
        "@type": "Place",
        "name": "Teddy Dupay Basketball Academy",
        "address": {
          "@type": "PostalAddress",
          "streetAddress": "302 W Kennedy Blvd",
          "addressLocality": "Tampa",
          "addressRegion": "FL",
          "postalCode": "33606",
          "addressCountry": "US"
        }
      },
      "organizer": {
        "@type": "Organization",
        "name": "Teddy Dupay Basketball Academy",
        "url": "https://www.teddydupay.com"
      },
      "performer": {
        "@type": "Person",
        "name": "Teddy Dupay"
      },
      "url": "https://www.teddydupay.com/programs/summer-camps",
      "image": "https://www.teddydupay.com/build/assets/teddy-dupay-teaches-shooting-technique-tampa-DYfkozVc.webp",
      "description": "Four-day shooting-focused basketball camp in downtown Tampa for ages 8-16. Step Up For Students accepted."
    }
  ]
}
</script>

5. FAQPage JSON-LD → homepage <head>

From the 6 Q&As the homepage FAQ accordion already renders.

<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "FAQPage",
  "mainEntity": [
    {
      "@type": "Question",
      "name": "How do I find information about TDBA's basketball training programs?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "To find detailed information about our basketball training programs, including individual classes and membership packages, visit the Classes/Programs section on our website."
      }
    },
    {
      "@type": "Question",
      "name": "Where can I learn more about upcoming TDBA camps and leagues?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "For the latest information on upcoming TDBA camps and leagues, including dates, locations, and registration details, visit the Camps & Leagues section on our website."
      }
    },
    {
      "@type": "Question",
      "name": "How do I register for TDBA events or programs?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Registration for all TDBA events and programs can be done directly through our website. Navigate to the specific event or program page, where you'll find registration instructions and links."
      }
    },
    {
      "@type": "Question",
      "name": "Can I find testimonials or feedback from previous participants?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Yes, the TDBA website features testimonials and feedback from parents and participants, found on the pages dedicated to specific programs and camps."
      }
    },
    {
      "@type": "Question",
      "name": "How can I contact TDBA if I have questions or need assistance?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "You can contact TDBA through the Contact Us page, which provides direct contact methods including email, our contact form, and phone at (813) 518-8739."
      }
    },
    {
      "@type": "Question",
      "name": "Is there a resource for first-time visitors to understand how TDBA programs work?",
      "acceptedAnswer": {
        "@type": "Answer",
        "text": "Yes — first-time visitors can read the Parent's Guide 'How It Works' article in our blog section, which explains how our membership programs are structured."
      }
    }
  ]
}
</script>

Verify

Run each URL through Google’s Rich Results Test (search.google.com/test/rich-results) — expect LocalBusiness + Event×6 + FAQ to validate — then request re-indexing in Search Console. Thanks!