Essential Genealogy 2.0 Academy Infographic
https://cdn.tailwindcss.com
https://cdn.jsdelivr.net/npm/chart.js
body {
font-family: ‘Inter’, sans-serif;
background-color: #F0F4F8;
}
.chart-container {
position: relative;
width: 100%;
max-width: 450px;
margin-left: auto;
margin-right: auto;
height: 300px;
max-height: 400px;
}
@media (min-width: 768px) {
.chart-container {
height: 350px;
}
}
.flow-step {
border-color: #00A9E0;
color: #003B5C;
}
.flow-arrow {
color: #00A9E0;
font-size: 2.5rem;
line-height: 1;
}
.stat-number {
color: #0072CE;
font-weight: 900;
font-size: 4rem;
}
.stat-label {
color: #003B5C;
font-weight: 700;
margin-top: -0.5rem;
}
.cta-card {
background: linear-gradient(135deg, #0072CE, #003B5C);
}
Unlock Your Ancestry This Family History Month!
Discover how the Essential Genealogy 2.0 Academy transforms your research with the power of AI.
35+
Comprehensive Courses
The academy provides a rich ecosystem of resources designed to elevate your skills from a traditional researcher to a confident, AI-skilled ancestral storyteller.
What You’ll Learn
Our curriculum is focused on the most impactful areas of modern genealogy. We provide in-depth training on leveraging AI, mastering storytelling, and preserving your family’s legacy through effective archiving.
Your Roadmap to AI-Assisted Family History
We’ve designed a clear path to success. Follow our structured roadmap to build your skills progressively, from foundational concepts to advanced storytelling techniques.
1. The Basics
Start with courses like “Getting Started with AI for Family Historians.”
→
2. The Essentials
Master key skills with “Mastering AI in Genealogy 2.0.”
→
3. The Storyteller
Create captivating stories with “Beyond the Pen.”
Join the Essential Genealogy 2.0 Membership!
Get unlimited access to all courses, live masterclasses, and one-on-one coaching.
This August, new members get 10% OFF!
Use this code at checkout:
egmembership2025
Enroll Now
function wrapText(str) {
const words = str.split(‘ ‘);
const lines = [];
let currentLine = ”;
words.forEach(word => {
if ((currentLine + word).length > 16 && currentLine.length > 0) {
lines.push(currentLine);
currentLine = word;
} else {
currentLine += (currentLine ? ‘ ‘ : ”) + word;
}
});
if (currentLine) {
lines.push(currentLine);
}
return lines.length > 1 ? lines : str;
}
const courseFocusCtx = document.getElementById(‘courseFocusChart’).getContext(‘2d’);
new Chart(courseFocusCtx, {
type: ‘doughnut’,
data: {
labels: [‘AI for Genealogy’, ‘Ancestral Storytelling’, ‘Family Archiving’].map(wrapText),
datasets: [{
label: ‘Course Focus’,
data: [50, 35, 15],
backgroundColor: [
‘#0072CE’,
‘#00A9E0’,
‘#89D6F4’
],
borderColor: ‘#F0F4F8’,
borderWidth: 4,
hoverOffset: 8
}]
},
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
position: ‘bottom’,
labels: {
color: ‘#003B5C’,
font: {
size: 14
}
}
},
tooltip: {
callbacks: {
title: function(tooltipItems) {
const item = tooltipItems[0];
let label = item.chart.data.labels[item.dataIndex];
if (Array.isArray(label)) {
return label.join(‘ ‘);
} else {
return label;
}
}
}
}
}
}
});