Task: Create Static Landing Page for leadertalk.app
Objective: Recreate the current leadertalk.app landing page as static files served from our existing Express server to eliminate $25/month hosting cost.
Current Page Analysis:
- URL: https://leadertalk.app
- Built with Next.js/React (Durable.co hosting)
- Professional communication coaching app landing page
- Includes hero section, features, pricing, testimonials
- Mobile responsive design
- SEO optimized with proper meta tags
Implementation Requirements:
- Create Landing Page Structure:
server/
├── landing/
│ ├── index.html
│ ├── styles.css
│ ├── script.js
│ └── assets/
│ └── images/
- Server Route Integration:
// Add to server/routes/landing.ts
router.get('/', (req, res) => {
if (req.hostname === 'app.leadertalk.app') {
return res.sendFile(path.join(__dirname, '../client/dist/index.html'));
}
res.sendFile(path.join(__dirname, '../landing/index.html'));
});
- Design Requirements:
- Exact visual match to current leadertalk.app
- Modern, professional design following our UI guidelines
- Mobile-first responsive design
- Fast loading - optimize images and CSS
- SEO optimized - proper meta tags, structured data
- Content Sections to Include:
- Hero section with value proposition
- Key features (speech analysis, AI coaching, training path)
- Pricing information
- Call-to-action buttons linking to app.leadertalk.app
- Footer with contact/legal links
- Technical Specifications:
- Pure HTML/CSS/JS (no build process needed)
- Design tokens from our existing system
- Accessibility compliant (WCAG AA)
- Performance optimized (<3s load time)
- Integration Points:
- CTA buttons →
https://app.leadertalk.app/auth
- Contact forms → existing
/api/contact endpoint
- Analytics → Google Analytics integration
Deliverables:
- Complete static landing page files
- Server route configuration
- Asset optimization recommendations
- DNS configuration instructions
Priority: HIGH - Will save $300/year immediately upon deployment.
Cost Savings: $25/month → $0/month ($300/year savings)
Task: Create Static Landing Page for leadertalk.app
Objective: Recreate the current leadertalk.app landing page as static files served from our existing Express server to eliminate $25/month hosting cost.
Current Page Analysis:
Implementation Requirements:
https://app.leadertalk.app/auth/api/contactendpointDeliverables:
Priority: HIGH - Will save $300/year immediately upon deployment.
Cost Savings: $25/month → $0/month ($300/year savings)