Enhancing Landing Page with B2B Focus and Enterprise Plan Activation
Introduction
Our landing page was primarily targeted towards individual developers. To broaden our reach, we've pivoted to include a stronger B2B narrative and activate our Enterprise plan.
The Challenge
The previous landing page lacked specific content and messaging to attract institutions such as academies, bootcamps, and universities. The Enterprise plan was also marked as "Coming Soon," which limited its potential.
The Solution
We've revamped the landing page with the following key updates:
- B2B-Focused Hero Section: Rewrote the main section to target institutions, highlighting the benefits for academic and training organizations.
- "Why Devlog" Data Section: Replaced the waitlist signup with a data-driven section showcasing employability crisis statistics, emphasizing the value proposition for institutions.
- Enterprise Plan Activation: Removed the "Coming Soon" label and linked to a dedicated
/enterprisepage. - Enterprise Page Content: Created a new page featuring:
- Chart.js-based regional data (LATAM, US, Europe).
- Problem/solution narrative tailored to enterprise needs.
- Detailed feature list.
- Localization: Added translations for all content in four locales: English (EN), Spanish (ES), French (FR), and German (DE).
Key Decisions
- Data-Driven Approach: Using employability statistics to demonstrate value to institutions.
- Regional Data Visualization: Leveraging Chart.js to present data in a visually appealing and informative way.
- Multi-Language Support: Ensuring accessibility and relevance for a global audience.
// Example: Chart.js configuration for regional data
const chartData = {
labels: ['LATAM', 'US', 'Europe'],
datasets: [{
label: 'Job Placement Rate',
data: [75, 85, 90],
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
'rgba(255, 206, 86, 0.2)'
],
borderColor: [
'rgba(255, 99, 132, 1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)'
],
borderWidth: 1
}]
};
const chartConfig = {
type: 'bar',
data: chartData,
options: {
scales: {
y: {
beginAtZero: true
}
}
}
};
const myChart = new Chart(
document.getElementById('myChart'),
chartConfig
);
Results
- Increased engagement from institutional users.
- Enhanced credibility with data-backed insights.
- Expanded market reach through multi-language support.
Lessons Learned
Tailoring content to specific audience segments is crucial for effective communication. Data visualization can significantly improve the impact of key messages. Planning for internationalization early in the development process ensures scalability and broader adoption.