The PricingSection component displays ShipFree’s pricing plans with a focus on the free community edition offering.
import PricingSection from "@/app/(site)/pricing";
export default function HomePage() {
return (
<div>
<PricingSection />
{/* Other sections */}
</div>
);
}
The PricingSection component is self-contained and doesn’t accept any props.
Price Display
Feature List
Call-to-Action
export default function PricingSection() {
return (
<div
id="pricing"
className="min-h-screen bg-[#0F0F0F] text-white px-4 py-16"
>
<div className="max-w-7xl mx-auto">
{/* Header */}
<div className="text-center mb-16">
<p className="text-[#FFBE18] font-medium mb-4">Pricing</p>
<h2 className="text-4xl md:text-5xl font-bold mb-4">
Save hours of repetitive code,
<br />
ship fast, get profitable!
</h2>
<p className="text-green-500 flex items-center justify-center gap-2">
<span className="inline-block">🎉</span>
100% Free Forever!
</p>
</div>
{/* Pricing card */}
<div className="max-w-md mx-auto">
<div className="rounded-xl bg-zinc-900 p-6 border border-green-500/50 relative">
{/* Card content */}
</div>
</div>
</div>
</div>
);
}
The component uses Tailwind CSS for:
Pricing Display
Visual Design
User Experience
<PricingSection />
<div className="bg-gradient-to-b from-black to-zinc-900">
<PricingSection />
</div>
The component can be modified through:
Content Updates
Visual Changes
Layout Adjustments
FeaturesSection
- Details what’s includedFAQ
- Answers pricing questionsCTA
- Drives conversionFooter
- Contains additional links