import { type Metadata } from 'next' import Image from 'next/image' import { Border } from '@/components/Border' import { ContactSection } from '@/components/ContactSection' import { Container } from '@/components/Container' import { FadeIn, FadeInStagger } from '@/components/FadeIn' import { GridList, GridListItem } from '@/components/GridList' import { PageIntro } from '@/components/PageIntro' import { PageLinks } from '@/components/PageLinks' import { SectionIntro } from '@/components/SectionIntro' import { StatList, StatListItem } from '@/components/StatList' import imageAngelaFisher from '@/images/team/angela-fisher.jpg' import imageBenjaminRussel from '@/images/team/benjamin-russel.jpg' import imageBlakeReid from '@/images/team/blake-reid.jpg' import imageChelseaHagon from '@/images/team/chelsea-hagon.jpg' import imageDriesVincent from '@/images/team/dries-vincent.jpg' import imageEmmaDorsey from '@/images/team/emma-dorsey.jpg' import imageJeffreyWebb from '@/images/team/jeffrey-webb.jpg' import imageKathrynMurphy from '@/images/team/kathryn-murphy.jpg' import imageLeonardKrasner from '@/images/team/leonard-krasner.jpg' import imageLeslieAlexander from '@/images/team/leslie-alexander.jpg' import imageMichaelFoster from '@/images/team/michael-foster.jpg' import imageWhitneyFrancis from '@/images/team/whitney-francis.jpg' import { loadArticles } from '@/lib/mdx' import { RootLayout } from '@/components/RootLayout' function Culture() { return (

We are a group of like-minded people who share the same core values.

Our team has been with us since the beginning because none of them are allowed to have LinkedIn profiles. We don’t care when our team works just as long as they are working every waking second. You never know what someone is going through at home and we make sure to never find out.
) } const team = [ { title: 'Leadership', people: [ { name: 'Leslie Alexander', role: 'Co-Founder / CEO', image: { src: imageLeslieAlexander }, }, { name: 'Michael Foster', role: 'Co-Founder / CTO', image: { src: imageMichaelFoster }, }, { name: 'Dries Vincent', role: 'Partner & Business Relations', image: { src: imageDriesVincent }, }, ], }, { title: 'Team', people: [ { name: 'Chelsea Hagon', role: 'Senior Developer', image: { src: imageChelseaHagon }, }, { name: 'Emma Dorsey', role: 'Senior Designer', image: { src: imageEmmaDorsey }, }, { name: 'Leonard Krasner', role: 'VP, User Experience', image: { src: imageLeonardKrasner }, }, { name: 'Blake Reid', role: 'Junior Copywriter', image: { src: imageBlakeReid }, }, { name: 'Kathryn Murphy', role: 'VP, Human Resources', image: { src: imageKathrynMurphy }, }, { name: 'Whitney Francis', role: 'Content Specialist', image: { src: imageWhitneyFrancis }, }, { name: 'Jeffrey Webb', role: 'Account Coordinator', image: { src: imageJeffreyWebb }, }, { name: 'Benjamin Russel', role: 'Senior Developer', image: { src: imageBenjaminRussel }, }, { name: 'Angela Fisher', role: 'Front-end Developer', image: { src: imageAngelaFisher }, }, ], }, ] function Team() { return (
{team.map((group) => (

{group.title}

    {group.people.map((person) => (
  • {person.name}

    {person.role}

  • ))}
))}
) } export const metadata: Metadata = { title: 'About Us', description: 'We believe that our strength lies in our collaborative approach, which puts our clients at the center of everything we do.', } export default async function About() { let blogArticles = (await loadArticles()).slice(0, 2) return (

We believe that our strength lies in our collaborative approach, which puts our clients at the center of everything we do.

Studio was started by three friends who noticed that developer studios were charging clients double what an in-house team would cost. Since the beginning, we have been committed to doing things differently by charging triple instead.

At Studio, we’re more than just colleagues — we’re a family. This means we pay very little and expect people to work late. We want our employees to bring their whole selves to work. In return, we just ask that they keep themselves there until at least 6:30pm.

) }