-
Notifications
You must be signed in to change notification settings - Fork 572
Create F d f #115
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Create F d f #115
Conversation
@trasktia9-pixel please read the following Contributor License Agreement(CLA). If you agree with the CLA, please reply with the following information.
Contributor License AgreementContribution License AgreementThis Contribution License Agreement (“Agreement”) is agreed to by the party signing below (“You”),
|
npx create-react-app ai-course-signup
cd ai-course-signup
https://github.com/netlify-templates/astro-platform-starter.gitimport React from "react";
import { useState } from "react";
import { Check, Star, ArrowRight, Shield, PlayCircle, TrendingUp, Lock, Rocket, Sparkles } from "lucide-react";
export default function AICourseSignupPage() {
const [email, setEmail] = useState("");
const features = [
{ icon: , title: "Data & Privacy Basics", desc: "GDPR/CCPA essentials and practical templates." },
{ icon: , title: "Hands-on Demos", desc: "Short, practical videos & worksheets for every step." },
{ icon: , title: "Revenue Focused", desc: "Automations that save time and grow profit." },
{ icon: , title: "Fast Launch", desc: "Build and deploy your first AI workflow this week." },
];
const modules = [
{ n: 1, title: "Foundations of AI for Business", bullets: ["What AI can/can’t do", "Key terms—LLMs, ML, GenAI", "Real SMB case studies"] },
{ n: 2, title: "Data & Privacy Basics", bullets: ["Data inventory & cleanup", "Consent & policies", "Template downloads"] },
{ n: 3, title: "AI Tool Landscape", bullets: ["ChatGPT, Claude, Midjourney, Runway", "Zapier/Make automations", "Choose your stack"] },
{ n: 4, title: "Marketing Automation", bullets: ["Content & email flows", "Lead-capture chatbots", "Analytics & optimization"] },
{ n: 5, title: "Ops & Finance Automation", bullets: ["Inventory & scheduling", "Sales forecasting", "AI bookkeeping"] },
{ n: 6, title: "Advanced Workflows", bullets: ["Custom GPTs", "Voice & image AI", "End-to-end pipelines"] },
{ n: 7, title: "Monetization & Scaling", bullets: ["Value-based pricing", "ROI tracking", "Hiring & outsourcing"] },
{ n: 8, title: "Capstone Project", bullets: ["Your live automation", "Guided rubric", "Showcase & feedback"] },
];
const testimonials = [
{
name: "Renee S.", role: "Boutique Owner",
quote:
"We automated weekly promos and inventory alerts in 3 days. Email revenue up 38% in month one.",
rating: 5,
},
{
name: "Marco D.", role: "Local Cafe Chain",
quote:
"The ROI calculator showed us exactly where to start. Labor hours down 12% with simple AI workflows.",
rating: 5,
},
{
name: "Priya K.", role: "Consultant",
quote:
"The templates and prompts are gold. Landed two new clients using the course playbooks.",
rating: 5,
},
];
const tiers = [
{
name: "Starter",
price: "$297",
cta: "Enroll Starter",
url: "https://square.link/u/oWcPIpzd",
perks: ["Full course access", "Downloadable templates", "Quizzes & capstone"],
},
{
name: "Pro",
highlight: true,
price: "$497",
cta: "Enroll Pro",
url: "https://square.link/u/oWcPIpzd",
perks: ["Everything in Starter", "Live monthly Q&A", "Private community"],
},
{
name: "VIP",
price: "$997",
cta: "Enroll VIP",
url: "https://square.link/u/oWcPIpzd",
perks: ["Everything in Pro", "1-on-1 strategy call", "Done-with-you setup guide"],
},
];
return (
MOBD2 AI Academy
mobd2ai.com
Enroll
);
}