diff --git a/web/app/layouts/website.vue b/web/app/layouts/website.vue index 1aadb1b6..eab29236 100644 --- a/web/app/layouts/website.vue +++ b/web/app/layouts/website.vue @@ -194,13 +194,13 @@ function goToPricing() {
  • - Affiliates - +
  • +import { + mdiCashMultiple, + mdiCreation, + mdiLinkVariant, + mdiWalletOutline, + mdiCalendarClock, + mdiCursorDefaultClick, + mdiArrowRightThin, + mdiChevronDown, +} from '@mdi/js' + +definePageMeta({ + layout: 'website', +}) + +useSeoMeta({ + title: 'Affiliate Program — Earn 20% on every sale | httpSMS', + description: + 'Become a httpSMS affiliate and earn 20% commission — up to $70.00 — on every customer you refer. Free to join, powered by Lemon Squeezy.', + ogTitle: 'Get paid to share httpSMS — earn 20% on every sale', + ogDescription: + 'Become a httpSMS affiliate and earn 20% commission — up to $70.00 — on every customer you refer. Free to join, powered by Lemon Squeezy.', + ogImage: 'https://httpsms.com/header.png', + twitterCard: 'summary_large_image', +}) + +const { mdAndDown } = useDisplay() + +const signupUrl = 'https://affiliates.lemonsqueezy.com/programs/httpsms' + +const highlights = [ + { value: '20%', label: 'commission on every sale' }, + { value: '$70', label: 'max earned per referral' }, + { value: 'NET30', label: 'payout terms' }, + { value: '$10', label: 'minimum payout' }, +] + +const faqs = [ + { + icon: mdiCreation, + question: 'Why promote us?', + answer: + "Affiliate partnerships are one of the simplest yet most profitable ways to make money online. You send customers our way, and we'll pay you for it.", + }, + { + icon: mdiLinkVariant, + question: 'How do I make money as an affiliate?', + answer: + 'All you have to do is recommend us using your affiliate link on your website, blog, and social media. We track your clicks and transactions so you can get paid.', + }, + { + icon: mdiCashMultiple, + question: 'How much can I earn?', + answer: + "You earn 20% commission — up to $70.00 — on every referral that results in a successful sale. There's no limit to how much you can make by promoting us.", + }, + { + icon: mdiWalletOutline, + question: 'What are the payout minimums?', + answer: + 'We require a minimum balance of $10.00 before processing an affiliate payout. We set this to avoid any fraudulent issues with our affiliate program.', + }, + { + icon: mdiCalendarClock, + question: 'When do I get paid?', + answer: + 'We payout on NET30 terms to account for refunds and chargebacks. For example, commissions generated in January would be paid out on March 15th (NET30).', + }, + { + icon: mdiCursorDefaultClick, + question: 'How do I sign up?', + answer: + 'The Lemon Squeezy affiliate hub hosts our affiliate program. Click the "Become an affiliate" button below to create a Lemon Squeezy account and join our program.', + }, +] + +const scrollToFaq = () => { + document.getElementById('faq')?.scrollIntoView({ behavior: 'smooth' }) +} + + +