import React, { useState } from “react”;
// Single-file, responsive squeeze/landing page for
// “The Smart Plate Blueprint: Your Easy Guide to Stress-Free Weight Loss”
// Tech: React + TailwindCSS (no external assets required)
// Notes:
// – Replace the mock signup handler with your ESP form action (Mailchimp/ConvertKit/etc.).
// – All primary CTAs anchor-link to the signup form.
// – Mobile-first, accessible, fast-loading, no JS frameworks beyond React.
export default function SmartPlateLandingPage() {
const [submitted, setSubmitted] = useState(false);
const onSubmit = (e) => {
e.preventDefault();
// TODO: Replace with your ESP form submission.
// Example (Mailchimp):
//
);
}
function CheckIcon(){
return (
);
}
function ShieldIcon(){
return (
);
}
function ClockIcon(){
return (
);
}
function LockIcon(){
return (
);
}
function SparkleIcon(){
return (
);
}