Files
site/app/pages/index.vue

40 lines
1.2 KiB
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<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>. Im married to Hannah YabroveRosner. 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>