The MakerIntro component presents the story and mission behind ShipFree, featuring a personal introduction from the creators and key value propositions.
import MakerIntro from "@/app/(site)/MakerIntro";
export default function HomePage() {
return (
<div>
<MakerIntro />
{/* Other sections */}
</div>
);
}
The MakerIntro component is self-contained and doesn’t accept any props.
Introduction
Value Propositions
Social Proof
export default function MakerIntro() {
return (
<div className="bg-[#212121] mb-8 text-gray-300 p-8">
<div className="max-w-2xl mx-auto space-y-8">
<div className="flex flex-col md:flex-row gap-8 items-start">
{/* Profile image */}
<div className="relative w-[200px] h-[200px] flex-shrink-0">
<div
className="absolute inset-0 bg-cover bg-center rounded-lg"
style={{ backgroundImage: "url('/idee8.png')" }}
/>
</div>
{/* Content */}
<div className="space-y-4">
<h1>Built for Founders, by Founders 🚀</h1>
{/* Introduction text */}
</div>
</div>
{/* Value propositions */}
<div className="space-y-6">{/* List of benefits */}</div>
</div>
</div>
);
}
The component uses Tailwind CSS for:
Content Strategy
Visual Design
Accessibility
<MakerIntro />
<div className="bg-gradient-to-b from-zinc-900 to-black">
<MakerIntro />
</div>
The component can be modified through:
Content Updates
Visual Changes
Style Adjustments
Hero
- Sets up the initial contextFeaturesSection
- Details the technical aspectsTestimonials
- Provides social proofCTA
- Drives user action