├── .eslintrc.json ├── .gitignore ├── README.md ├── jsconfig.json ├── next.config.js ├── package.json ├── postcss.config.js ├── public ├── next.svg └── vercel.svg ├── src ├── app │ ├── about │ │ └── page.jsx │ ├── base.css │ ├── blog │ │ └── page.jsx │ ├── contact │ │ └── page.jsx │ ├── favicon.ico │ ├── globals.css │ ├── layout.jsx │ ├── not-found.jsx │ ├── page.jsx │ ├── process │ │ └── page.jsx │ └── work │ │ └── page.jsx ├── components │ ├── Blockquote.jsx │ ├── Border.jsx │ ├── Build.jsx │ ├── Button.jsx │ ├── Clients.jsx │ ├── ContactDetails.jsx │ ├── ContactForm.jsx │ ├── ContactSection.jsx │ ├── Container.jsx │ ├── Cultures.jsx │ ├── Deliver.jsx │ ├── Discover.jsx │ ├── FadeIn.jsx │ ├── Footer.jsx │ ├── FooterNavigation.jsx │ ├── GridList.jsx │ ├── GridPattern.jsx │ ├── List.jsx │ ├── Logo.jsx │ ├── Offices.jsx │ ├── PageIntro.jsx │ ├── RadioInput.jsx │ ├── RootLayout.jsx │ ├── Section.jsx │ ├── SectionIntro.jsx │ ├── Services.jsx │ ├── SocialMedia.jsx │ ├── StatList.jsx │ ├── StylizedImage.jsx │ ├── TagList.jsx │ ├── Testimonials.jsx │ ├── TextInput.jsx │ └── Values.jsx ├── constants │ └── index.jsx ├── fonts │ └── Mona-Sans.var.woff2 └── images │ ├── clients │ ├── bright-path │ │ ├── logo-dark.svg │ │ ├── logo-light.svg │ │ ├── logomark-dark.svg │ │ └── logomark-light.svg │ ├── family-fund │ │ ├── logo-dark.svg │ │ ├── logo-light.svg │ │ ├── logomark-dark.svg │ │ └── logomark-light.svg │ ├── green-life │ │ ├── logo-dark.svg │ │ ├── logo-light.svg │ │ ├── logomark-dark.svg │ │ └── logomark-light.svg │ ├── home-work │ │ ├── logo-dark.svg │ │ ├── logo-light.svg │ │ ├── logomark-dark.svg │ │ └── logomark-light.svg │ ├── mail-smirk │ │ ├── logo-dark.svg │ │ ├── logo-light.svg │ │ ├── logomark-dark.svg │ │ └── logomark-light.svg │ ├── north-adventures │ │ ├── logo-dark.svg │ │ ├── logo-light.svg │ │ ├── logomark-dark.svg │ │ └── logomark-light.svg │ ├── phobia │ │ ├── logo-dark.svg │ │ ├── logo-light.svg │ │ ├── logomark-dark.svg │ │ └── logomark-light.svg │ └── unseal │ │ ├── logo-dark.svg │ │ ├── logo-light.svg │ │ ├── logomark-dark.svg │ │ └── logomark-light.svg │ ├── laptop.jpg │ ├── meeting.jpg │ ├── team │ ├── angela-fisher.jpeg │ ├── benjamin-russel.jpeg │ ├── blake-reid.jpeg │ ├── chelsea-hagon.jpeg │ ├── dries-vincent.jpeg │ ├── emma-dorsey.jpeg │ ├── jeffrey-webb.jpeg │ ├── kathryn-murphy.jpeg │ ├── leonard-krasner.jpeg │ ├── leslie-alexander.jpeg │ ├── michael-foster.jpeg │ └── whitney-francis.jpeg │ └── whiteboard.jpg └── tailwind.config.js /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/about/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/app/about/page.jsx -------------------------------------------------------------------------------- /src/app/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/app/base.css -------------------------------------------------------------------------------- /src/app/blog/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/app/blog/page.jsx -------------------------------------------------------------------------------- /src/app/contact/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/app/contact/page.jsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/app/globals.css -------------------------------------------------------------------------------- /src/app/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/app/layout.jsx -------------------------------------------------------------------------------- /src/app/not-found.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/app/not-found.jsx -------------------------------------------------------------------------------- /src/app/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/app/page.jsx -------------------------------------------------------------------------------- /src/app/process/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/app/process/page.jsx -------------------------------------------------------------------------------- /src/app/work/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/app/work/page.jsx -------------------------------------------------------------------------------- /src/components/Blockquote.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Blockquote.jsx -------------------------------------------------------------------------------- /src/components/Border.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Border.jsx -------------------------------------------------------------------------------- /src/components/Build.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Build.jsx -------------------------------------------------------------------------------- /src/components/Button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Button.jsx -------------------------------------------------------------------------------- /src/components/Clients.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Clients.jsx -------------------------------------------------------------------------------- /src/components/ContactDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/ContactDetails.jsx -------------------------------------------------------------------------------- /src/components/ContactForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/ContactForm.jsx -------------------------------------------------------------------------------- /src/components/ContactSection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/ContactSection.jsx -------------------------------------------------------------------------------- /src/components/Container.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Container.jsx -------------------------------------------------------------------------------- /src/components/Cultures.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Cultures.jsx -------------------------------------------------------------------------------- /src/components/Deliver.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Deliver.jsx -------------------------------------------------------------------------------- /src/components/Discover.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Discover.jsx -------------------------------------------------------------------------------- /src/components/FadeIn.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/FadeIn.jsx -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/FooterNavigation.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/FooterNavigation.jsx -------------------------------------------------------------------------------- /src/components/GridList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/GridList.jsx -------------------------------------------------------------------------------- /src/components/GridPattern.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/GridPattern.jsx -------------------------------------------------------------------------------- /src/components/List.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/List.jsx -------------------------------------------------------------------------------- /src/components/Logo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Logo.jsx -------------------------------------------------------------------------------- /src/components/Offices.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Offices.jsx -------------------------------------------------------------------------------- /src/components/PageIntro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/PageIntro.jsx -------------------------------------------------------------------------------- /src/components/RadioInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/RadioInput.jsx -------------------------------------------------------------------------------- /src/components/RootLayout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/RootLayout.jsx -------------------------------------------------------------------------------- /src/components/Section.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Section.jsx -------------------------------------------------------------------------------- /src/components/SectionIntro.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/SectionIntro.jsx -------------------------------------------------------------------------------- /src/components/Services.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Services.jsx -------------------------------------------------------------------------------- /src/components/SocialMedia.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/SocialMedia.jsx -------------------------------------------------------------------------------- /src/components/StatList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/StatList.jsx -------------------------------------------------------------------------------- /src/components/StylizedImage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/StylizedImage.jsx -------------------------------------------------------------------------------- /src/components/TagList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/TagList.jsx -------------------------------------------------------------------------------- /src/components/Testimonials.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Testimonials.jsx -------------------------------------------------------------------------------- /src/components/TextInput.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/TextInput.jsx -------------------------------------------------------------------------------- /src/components/Values.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/components/Values.jsx -------------------------------------------------------------------------------- /src/constants/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/constants/index.jsx -------------------------------------------------------------------------------- /src/fonts/Mona-Sans.var.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/fonts/Mona-Sans.var.woff2 -------------------------------------------------------------------------------- /src/images/clients/bright-path/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/bright-path/logo-dark.svg -------------------------------------------------------------------------------- /src/images/clients/bright-path/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/bright-path/logo-light.svg -------------------------------------------------------------------------------- /src/images/clients/bright-path/logomark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/bright-path/logomark-dark.svg -------------------------------------------------------------------------------- /src/images/clients/bright-path/logomark-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/bright-path/logomark-light.svg -------------------------------------------------------------------------------- /src/images/clients/family-fund/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/family-fund/logo-dark.svg -------------------------------------------------------------------------------- /src/images/clients/family-fund/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/family-fund/logo-light.svg -------------------------------------------------------------------------------- /src/images/clients/family-fund/logomark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/family-fund/logomark-dark.svg -------------------------------------------------------------------------------- /src/images/clients/family-fund/logomark-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/family-fund/logomark-light.svg -------------------------------------------------------------------------------- /src/images/clients/green-life/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/green-life/logo-dark.svg -------------------------------------------------------------------------------- /src/images/clients/green-life/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/green-life/logo-light.svg -------------------------------------------------------------------------------- /src/images/clients/green-life/logomark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/green-life/logomark-dark.svg -------------------------------------------------------------------------------- /src/images/clients/green-life/logomark-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/green-life/logomark-light.svg -------------------------------------------------------------------------------- /src/images/clients/home-work/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/home-work/logo-dark.svg -------------------------------------------------------------------------------- /src/images/clients/home-work/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/home-work/logo-light.svg -------------------------------------------------------------------------------- /src/images/clients/home-work/logomark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/home-work/logomark-dark.svg -------------------------------------------------------------------------------- /src/images/clients/home-work/logomark-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/home-work/logomark-light.svg -------------------------------------------------------------------------------- /src/images/clients/mail-smirk/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/mail-smirk/logo-dark.svg -------------------------------------------------------------------------------- /src/images/clients/mail-smirk/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/mail-smirk/logo-light.svg -------------------------------------------------------------------------------- /src/images/clients/mail-smirk/logomark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/mail-smirk/logomark-dark.svg -------------------------------------------------------------------------------- /src/images/clients/mail-smirk/logomark-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/mail-smirk/logomark-light.svg -------------------------------------------------------------------------------- /src/images/clients/north-adventures/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/north-adventures/logo-dark.svg -------------------------------------------------------------------------------- /src/images/clients/north-adventures/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/north-adventures/logo-light.svg -------------------------------------------------------------------------------- /src/images/clients/north-adventures/logomark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/north-adventures/logomark-dark.svg -------------------------------------------------------------------------------- /src/images/clients/north-adventures/logomark-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/north-adventures/logomark-light.svg -------------------------------------------------------------------------------- /src/images/clients/phobia/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/phobia/logo-dark.svg -------------------------------------------------------------------------------- /src/images/clients/phobia/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/phobia/logo-light.svg -------------------------------------------------------------------------------- /src/images/clients/phobia/logomark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/phobia/logomark-dark.svg -------------------------------------------------------------------------------- /src/images/clients/phobia/logomark-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/phobia/logomark-light.svg -------------------------------------------------------------------------------- /src/images/clients/unseal/logo-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/unseal/logo-dark.svg -------------------------------------------------------------------------------- /src/images/clients/unseal/logo-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/unseal/logo-light.svg -------------------------------------------------------------------------------- /src/images/clients/unseal/logomark-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/unseal/logomark-dark.svg -------------------------------------------------------------------------------- /src/images/clients/unseal/logomark-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/clients/unseal/logomark-light.svg -------------------------------------------------------------------------------- /src/images/laptop.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/laptop.jpg -------------------------------------------------------------------------------- /src/images/meeting.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/meeting.jpg -------------------------------------------------------------------------------- /src/images/team/angela-fisher.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/team/angela-fisher.jpeg -------------------------------------------------------------------------------- /src/images/team/benjamin-russel.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/team/benjamin-russel.jpeg -------------------------------------------------------------------------------- /src/images/team/blake-reid.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/team/blake-reid.jpeg -------------------------------------------------------------------------------- /src/images/team/chelsea-hagon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/team/chelsea-hagon.jpeg -------------------------------------------------------------------------------- /src/images/team/dries-vincent.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/team/dries-vincent.jpeg -------------------------------------------------------------------------------- /src/images/team/emma-dorsey.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/team/emma-dorsey.jpeg -------------------------------------------------------------------------------- /src/images/team/jeffrey-webb.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/team/jeffrey-webb.jpeg -------------------------------------------------------------------------------- /src/images/team/kathryn-murphy.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/team/kathryn-murphy.jpeg -------------------------------------------------------------------------------- /src/images/team/leonard-krasner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/team/leonard-krasner.jpeg -------------------------------------------------------------------------------- /src/images/team/leslie-alexander.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/team/leslie-alexander.jpeg -------------------------------------------------------------------------------- /src/images/team/michael-foster.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/team/michael-foster.jpeg -------------------------------------------------------------------------------- /src/images/team/whitney-francis.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/team/whitney-francis.jpeg -------------------------------------------------------------------------------- /src/images/whiteboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/src/images/whiteboard.jpg -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noorjsdivs/studioyt/HEAD/tailwind.config.js --------------------------------------------------------------------------------