13 lines
354 B
JavaScript

import './About.css';
function About() {
return (
<div className="page">
<h1>About</h1>
<p>Welcome to my mountaineering diary! I'm Jake, a rider from the Bay Area. I love road, mountain, and gravel cycling around my home mountains and anywhere that has cool trails & views.</p>
</div>
);
}
export default About;