Added MilestoneTracker nav from GettingStarted

This commit is contained in:
Josh 2025-03-25 12:54:42 +00:00
parent be65fca638
commit b3ff06c0fc
2 changed files with 40 additions and 0 deletions

View File

@ -80,3 +80,35 @@
} }
} }
.premium-access {
text-align: center;
margin-top: 40px;
background-color: #f8f9fa;
padding: 20px;
border-radius: 10px;
border: 1px solid #ddd;
}
.premium-button {
background-color: #4caf50;
color: white;
padding: 12px 24px;
font-size: 16px;
border-radius: 6px;
border: none;
cursor: pointer;
margin-top: 10px;
transition: background-color 0.3s ease;
}
.premium-button:hover {
background-color: #388e3c;
}
.premium-label {
font-size: 0.85em;
margin-left: 6px;
font-weight: normal;
opacity: 0.85;
}

View File

@ -35,6 +35,14 @@ function GettingStarted() {
</div> </div>
</div> </div>
</div> </div>
<div className="premium-access">
<h3>Already know your path?</h3>
<p>You can skip ahead and begin planning your milestones now.</p>
<button className="premium-button" onClick={() => navigate('/milestone-tracker')}>
Access Milestone Tracker <span className="premium-label">(Premium)</span>
</button>
</div>
</div> </div>
); );
} }