Static landing page (index.html) currently live at grubflip.com, plus full WordPress theme under wp-theme/grubflip/ with: - Hero section, how-it-works, benefits, early access signup form - Custom post type for storing waitlist signups via AJAX - WP admin columns for managing signups - Template parts for maintainability - Responsive design with Inter font, dark theme, orange accents Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
34 lines
853 B
PHP
34 lines
853 B
PHP
<?php
|
|
/**
|
|
* Template Part: How It Works
|
|
*
|
|
* @package Grubflip
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit;
|
|
}
|
|
?>
|
|
|
|
<section class="how-it-works">
|
|
<h2 class="section-title">How It Works</h2>
|
|
<p class="section-subtitle">Three steps to start flipping your grub.</p>
|
|
<div class="steps">
|
|
<div class="step">
|
|
<div class="step-icon">📲</div>
|
|
<h3>Sign Up</h3>
|
|
<p>Create your profile and verify where you work. It takes 30 seconds.</p>
|
|
</div>
|
|
<div class="step">
|
|
<div class="step-icon">🤝</div>
|
|
<h3>Connect</h3>
|
|
<p>Browse nearby restaurant workers who want to swap discounts with you.</p>
|
|
</div>
|
|
<div class="step">
|
|
<div class="step-icon">🍕</div>
|
|
<h3>Flip Your Grub</h3>
|
|
<p>Use their discount, they use yours. Everybody eats something different for less.</p>
|
|
</div>
|
|
</div>
|
|
</section>
|