Files
site/app/pages/index.vue

43 lines
1.2 KiB
Vue

<template>
<div>
<section class="py-8">
<div class="container mx-auto px-4">
<h1 class="text-4xl font-extrabold">Brian Rosner</h1>
</div>
</section>
<section class="py-8">
<div class="container mx-auto px-4 grid grid-cols-1 md:grid-cols-3 gap-8">
<div class="md:col-span-2 prose prose-invert:prose">
<h2>Work</h2>
<p>
I am a Senior Software Engineer at
<ULink to="https://ramp.com/" target="_blank">Ramp</ULink>
working on the infrastructure team.
</p>
<p>
Previously, I was a Senior Software Engineer at Reddit, the CTO at
Gemr and the Chief Architect at Eldarion.
</p>
<h2>Home</h2>
<p>
I live in
<ULink to="https://en.wikipedia.org/wiki/Denver" target="_blank">Denver</ULink>,
<ULink to="https://en.wikipedia.org/wiki/Colorado" target="_blank">CO</ULink>.
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>
</section>
</div>
</template>
<script setup lang="ts">
definePageMeta({ layout: 'default' })
</script>