Open
Conversation
Contributor
|
@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”),
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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
);
}