|
| 1 | +<script lang="ts"> |
| 2 | + import { Avatar } from '@codingcatdev/blackcatui'; |
| 3 | + import GitLineGradient from '../(home-campaign)/GitLineGradient.svelte'; |
| 4 | + import TeamSvg from './TeamSvg.svelte'; |
| 5 | +</script> |
| 6 | + |
| 7 | +<section class="bg-surface-500-400-token text-on-surface-token"> |
| 8 | + <div class="grid justify-center grid-cols-1 px-8 mx-auto gap-2 2xl:gap-10 max-w-7xl relative"> |
| 9 | + <div class="flex"> |
| 10 | + <div class="flex flex-col basis-1/12 relative"> |
| 11 | + <GitLineGradient /> |
| 12 | + <TeamSvg /> |
| 13 | + <GitLineGradient rotate={true} /> |
| 14 | + </div> |
| 15 | + <div class="basis-11/12 pl-4 sm:pl-2 py-20 sm:py-48 flex flex-col gap-20"> |
| 16 | + <div class="flex flex-col lg:flex-row gap-8 items-center"> |
| 17 | + <div class="sm:basis-2/3 flex flex-col justify-center gap-8"> |
| 18 | + <h2>Meet the team</h2> |
| 19 | + <p> |
| 20 | + Coding Cat is brought to you by Alex and Brittney. Together, they have over 20 years |
| 21 | + of experience training and coaching young developers. |
| 22 | + </p> |
| 23 | + </div> |
| 24 | + <div class="sm:basis-1/3 flex"> |
| 25 | + <a href="/courses" class="bcu-button variant-filled sm:bcu-button-xl">Explore courses</a |
| 26 | + > |
| 27 | + </div> |
| 28 | + </div> |
| 29 | + <!-- Authors --> |
| 30 | + <div class="flex flex-col lg:flex-row gap-8 items-center"> |
| 31 | + <div class="sm:basis-1/2 flex flex-col justify-center gap-8"> |
| 32 | + <a class="bcu-card variant-filled-surface p-8" href="/author/alex-patterson"> |
| 33 | + <div class="flex flex-col gap-8"> |
| 34 | + <div class="flex gap-8 justify-center items-center"> |
| 35 | + <Avatar |
| 36 | + src="https://media.codingcat.dev/image/upload/c_thumb,g_face,w_200,h_200/main-codingcatdev-photo/headshots/Alex-Patterson-2022.jpg" |
| 37 | + class="shrink-0" |
| 38 | + /> |
| 39 | + <div class="flex flex-col"> |
| 40 | + <h2>Alex Patterson</h2> |
| 41 | + <p>Full-time DevRel</p> |
| 42 | + </div> |
| 43 | + </div> |
| 44 | + <p> |
| 45 | + I am a professional full stack developer, and I am passionate about mentoring new |
| 46 | + developers and helping the community that has allowed me to li... |
| 47 | + </p> |
| 48 | + </div> |
| 49 | + </a> |
| 50 | + </div> |
| 51 | + <div class="sm:basis-1/2 flex flex-col justify-center gap-8"> |
| 52 | + <a class="bcu-card variant-filled-surface p-8" href="/author/brittney-postma"> |
| 53 | + <div class="flex flex-col gap-8"> |
| 54 | + <div class="flex gap-8 justify-center items-center"> |
| 55 | + <Avatar |
| 56 | + src="https://media.codingcat.dev/image/upload/c_thumb,g_face,w_200,h_200/main-codingcatdev-photo/headshots/brittney.jpg" |
| 57 | + class="shrink-0" |
| 58 | + /> |
| 59 | + <div class="flex flex-col"> |
| 60 | + <h2>Brittney Postma</h2> |
| 61 | + <p>Full-time Designer</p> |
| 62 | + </div> |
| 63 | + </div> |
| 64 | + <p> |
| 65 | + I love developing beautiful, fluid, and responsive websites using the Jamstack. I |
| 66 | + thrive on UI/UX development with an extensive knowledge of front-end libraries |
| 67 | + Rea... |
| 68 | + </p> |
| 69 | + </div> |
| 70 | + </a> |
| 71 | + </div> |
| 72 | + </div> |
| 73 | + </div> |
| 74 | + </div> |
| 75 | + </div> |
| 76 | +</section> |
0 commit comments