-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a5fbdfa
commit 3928df3
Showing
4 changed files
with
75 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
import Head from 'next/head'; | ||
import Link from 'next/link'; | ||
import Navbar from 'components/Navbar'; | ||
import Footer from 'components/Footer'; | ||
import GlobalStyle from '../globalStyles'; | ||
|
||
export default function Team() { | ||
return ( | ||
<div className="container flex flex-col root home-page" style={{fontFamily: 'Inter', maxWidth: '1024px'}}> | ||
<Head> | ||
<title>Team</title> | ||
<link rel="icon" href="/favicon.ico" /> | ||
</Head> | ||
<GlobalStyle /> | ||
|
||
<main className="flex flex-grow flex-col notebase-app px-4"> | ||
<Navbar /> | ||
|
||
<section className="bg-white"> | ||
<div className="py-8 px-4 mx-auto max-w-screen-xl lg:pb-16 lg:px-20"> | ||
<div className="mx-auto max-w-screen-md text-center mb-8 lg:mb-12"> | ||
<h2 className="mb-4 text-4xl tracking-tight font-extrabold text-gray-900">Our Team</h2> | ||
<p className="mb-5 font-light text-gray-500 sm:text-xl"> | ||
We are on a journey to re-invent the api client. | ||
</p> | ||
</div> | ||
|
||
<div className="grid grid-cols-1 md:grid-cols-2 gap-8"> | ||
{/* Anoop M D */} | ||
<div className="bg-white shadow-lg rounded-lg overflow-hidden"> | ||
<div className="p-6 pb-0"> | ||
<h2 className="text-2xl font-semibold">Anoop M D</h2> | ||
<p className="text-gray-600">Creator and Lead Maintainer of Bruno</p> | ||
</div> | ||
<img | ||
src="images/team/anoop.png" | ||
alt="Anoop M D" | ||
className="w-full" | ||
/> | ||
</div> | ||
|
||
{/* Bruno */} | ||
<div className="bg-white shadow-lg rounded-lg overflow-hidden"> | ||
<div className="p-6 pb-0"> | ||
<h2 className="text-2xl font-semibold">Bruno</h2> | ||
<p className="text-gray-600">Chief Joy Officer</p> | ||
</div> | ||
<img | ||
src="images/team/bruno.png" | ||
alt="Bruno" | ||
className="w-full" | ||
/> | ||
</div> | ||
</div> | ||
|
||
<div> | ||
<h2 className="mb-14 mt-20 text-4xl text-center tracking-tight font-extrabold text-gray-900">Opensource Contributors</h2> | ||
<img | ||
src="https://contrib.rocks/image?repo=usebruno/bruno" | ||
alt="Contributors" | ||
className="cursor-pointer" | ||
onClick={() => window.open("https://github.com/usebruno/bruno/graphs/contributors")} | ||
/> | ||
</div> | ||
</div> | ||
</section> | ||
</main> | ||
|
||
<Footer/> | ||
</div> | ||
); | ||
}; |
3928df3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
bruno-website – ./
bruno-website.vercel.app
bruno-website-git-main-usebruno.vercel.app
bruno-website-usebruno.vercel.app
www.usebruno.com
usebruno.com