Update src/app/pricing/page.tsx

This commit is contained in:
2026-03-04 04:57:30 +00:00
parent cc43cecf89
commit 875a2516f4

View File

@@ -58,57 +58,28 @@ export default function PricingPage() {
useInvertedBackground={false}
plans={[
{
id: "freelancer-free",
badge: "Freelancer",
badgeIcon: Zap,
price: "Free",
subtitle: "Build your verified profile",
buttons={[
id: "freelancer-free", badge: "Freelancer", badgeIcon: Zap,
price: "Free", subtitle: "Build your verified profile", buttons: [
{ text: "Sign Up as Freelancer", href: "/auth/signup?role=freelancer" },
]}
features={[
"Create verified profile",
"Upload portfolio/work history",
"Access jobs feed",
"Get identity verified",
"Receive contact requests",
]}
],
features: [
"Create verified profile", "Upload portfolio/work history", "Access jobs feed", "Get identity verified", "Receive contact requests"],
},
{
id: "client-basic",
badge: "Most Popular",
badgeIcon: Star,
price: "$29",
subtitle: "Per month / Pay as you go option",
buttons={[
id: "client-basic", badge: "Most Popular", badgeIcon: Star,
price: "$29", subtitle: "Per month / Pay as you go option", buttons: [
{ text: "Start Hiring", href: "/auth/signup?role=client" },
]}
features={[
"Browse verified talent directory",
"Advanced search filters",
"Contact 10 freelancers/month",
"Post 3 jobs/month",
"Leave work confirmations",
"Email support",
]}
],
features: [
"Browse verified talent directory", "Advanced search filters", "Contact 10 freelancers/month", "Post 3 jobs/month", "Leave work confirmations", "Email support"],
},
{
id: "client-pro",
badge: "For Agencies",
badgeIcon: Sparkles,
price: "$99",
subtitle: "Per month / Unlimited hiring",
buttons={[
id: "client-pro", badge: "For Agencies", badgeIcon: Sparkles,
price: "$99", subtitle: "Per month / Unlimited hiring", buttons: [
{ text: "Get Pro Plan", href: "/auth/signup?role=client&plan=pro" },
]}
features={[
"Unlimited freelancer contacts",
"Unlimited job postings",
"Priority job placement",
"Team member accounts (3)",
"Advanced analytics",
"Dedicated support",
]}
],
features: [
"Unlimited freelancer contacts", "Unlimited job postings", "Priority job placement", "Team member accounts (3)", "Advanced analytics", "Dedicated support"],
},
]}
/>
@@ -124,29 +95,17 @@ export default function PricingPage() {
faqsAnimation="slide-up"
faqs={[
{
id: "1",
title: "Can freelancers earn money on STAFFED?",
content:
"Yes! Freelancers get 100% of their work earnings. STAFFED only charges clients for subscriptions or contact credits. Freelancers set their own rates and keep all project payments.",
},
id: "1", title: "Can freelancers earn money on STAFFED?", content:
"Yes! Freelancers get 100% of their work earnings. STAFFED only charges clients for subscriptions or contact credits. Freelancers set their own rates and keep all project payments."},
{
id: "2",
title: "What payment methods do you accept?",
content:
"We support bank transfers, GCash, PayPal, and credit cards. Freelancers can withdraw earnings to their preferred payment method. Clients can pay via subscription, credit card, or bank transfer.",
},
id: "2", title: "What payment methods do you accept?", content:
"We support bank transfers, GCash, PayPal, and credit cards. Freelancers can withdraw earnings to their preferred payment method. Clients can pay via subscription, credit card, or bank transfer."},
{
id: "3",
title: "Is there a cancellation fee?",
content:
"No. Client subscriptions can be cancelled anytime without penalties. Monthly billing provides flexibility. Freelancers can deactivate their profiles at any time with no fees.",
},
id: "3", title: "Is there a cancellation fee?", content:
"No. Client subscriptions can be cancelled anytime without penalties. Monthly billing provides flexibility. Freelancers can deactivate their profiles at any time with no fees."},
{
id: "4",
title: "How do contact credits work?",
content:
"Clients can purchase contact credits to reach freelancers outside their subscription. Each credit unlocks email and direct messaging with one freelancer. Unused credits roll over to the next month.",
},
id: "4", title: "How do contact credits work?", content:
"Clients can purchase contact credits to reach freelancers outside their subscription. Each credit unlocks email and direct messaging with one freelancer. Unused credits roll over to the next month."},
]}
/>
</div>
@@ -158,24 +117,16 @@ export default function PricingPage() {
socialLinks={[
{
icon: Linkedin,
href: "https://linkedin.com/company/staffed-platform",
ariaLabel: "LinkedIn",
},
href: "https://linkedin.com/company/staffed-platform", ariaLabel: "LinkedIn"},
{
icon: Twitter,
href: "https://twitter.com/staffed_ph",
ariaLabel: "Twitter",
},
href: "https://twitter.com/staffed_ph", ariaLabel: "Twitter"},
{
icon: Facebook,
href: "https://facebook.com/staffed.platform",
ariaLabel: "Facebook",
},
href: "https://facebook.com/staffed.platform", ariaLabel: "Facebook"},
{
icon: Mail,
href: "mailto:support@staffed.ph",
ariaLabel: "Email Support",
},
href: "mailto:support@staffed.ph", ariaLabel: "Email Support"},
]}
/>
</div>