41 lines
1.2 KiB
Vue
41 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">CO</a>. I am the husband to Hannah Yabrove-Rosner. I am
|
|
the father to Eddie, Dylan, Minnie (dog), Jack (dog), and Lily (cat).
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
definePageMeta({ layout: 'default' })
|
|
</script>
|
|
|
|
|