Skip to content

Commit

Permalink
add: PyCascades
Browse files Browse the repository at this point in the history
  • Loading branch information
thameemk committed Jun 3, 2024
1 parent ba943e4 commit b0cf844
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pages/stickies.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Container from "../components/Container";
import EuroPython from "./stickies/EuroPython";
import PyCascades from "./stickies/Pycascades";
import ResearchPaper from "./stickies/ResearchPaper";

function Stickies() {
Expand All @@ -12,7 +13,7 @@ function Stickies() {
<p className="mb-8 lg:mb-16 font-light text-center text-gray-500 sm:text-xl">
codes, blogs, thoughts, achievements ... ✍️ πŸ§‘β€πŸŽ“
</p>

<PyCascades />
<EuroPython />
<ResearchPaper />
</div>
Expand Down
39 changes: 39 additions & 0 deletions pages/stickies/PyCascades.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
function PyCascades() {
return (
<div className="mt-2">
<div className="block p-6 bg-white border border-gray-200 rounded-lg shadow hover:bg-gray-50">
<h5 className="mb-2 text-2xl font-bold tracking-tight text-gray-900">
Building GraphQL microservices using FastAPI
</h5>
<p className="font-normal text-gray-700 dark:text-gray-400">
Thrilled to share that I had the incredible opportunity to speak at
PyCascades Seattle alongside{" "}
<a
className="text-sky-600"
target="_blank"
rel="noreferrer"
href="https://www.linkedin.com/in/abymjoseph"
>
Aby M Joseph
</a>{" "}
🎀. Our session was all about building GraphQL microservices
using FastAPI & Apollo GraphQL. πŸ› οΈπŸ”
<br />
<br />
<a
className="text-sky-600"
href={
"https://2024.pycascades.com/program/talks/building-graphql-microservices-using-fastapi/"
}
target="_blank"
rel="noreferrer"
>
Read More &rarr;
</a>{" "}
</p>
</div>
</div>
);
}

export default PyCascades;

0 comments on commit b0cf844

Please sign in to comment.