mirror of
https://github.com/runyanjake/jakeswestcoast.git
synced 2025-10-04 23:37:29 -07:00
13 lines
354 B
JavaScript
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;
|