40 lines
1.2 KiB
Vue
40 lines
1.2 KiB
Vue
<template>
|
||
<div id="app" class="hello wrapper">
|
||
|
||
<section class="section">
|
||
<div class="container">
|
||
<h1 class="title is-1">Brian Rosner</h1>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="section">
|
||
<div class="container">
|
||
<div class="columns">
|
||
<div class="column is-two-thirds content is-large">
|
||
<h2>Work</h2>
|
||
<p>
|
||
I am a Staff Software Engineer at
|
||
<a href="https://ramp.com/" target="_blank">Ramp</a>
|
||
working on the infrastructure team.
|
||
</p>
|
||
<p>
|
||
Previously, I was a Senior Software Engineer at Reddit, CTO at Gemr and Chief Architect at Eldarion.
|
||
</p>
|
||
<h2>Home</h2>
|
||
<p>
|
||
I live in <a href="https://en.wikipedia.org/wiki/Denver" target="_blank">Denver</a>,
|
||
<a href="https://en.wikipedia.org/wiki/Colorado" target="_blank">Colorado</a>. I’m married to Hannah Yabrove‑Rosner. We have two kids, Eddie and Dylan, and three pets: Minnie and Jack (dogs) and Lily (cat).
|
||
</p>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
definePageMeta({ layout: 'default' })
|
||
</script>
|
||
|
||
|