File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 11import React from "react"
22import HeadingTwo from "../typography/HeadingTwo"
33import HeadingThree from "../typography/HeadingThree"
4+ import BodyOne from "../typography/BodyOne"
45import StackCard from "../cards/StackCard"
56import constants from "../../constants"
67const TechStack = ( ) => (
78 < >
89 < div className = "mt-12" >
9- < HeadingTwo className = "text-left" > Tech stack</ HeadingTwo >
10- < HeadingThree className = "text-blue text-left mb-5" > Frontend</ HeadingThree >
10+ < HeadingTwo className = "text-left font-extrabold" > Tech stack</ HeadingTwo >
11+ < HeadingThree className = "text-blue text-xl text-left mb-5 font-bold" >
12+ Frontend
13+ </ HeadingThree >
14+ < BodyOne className = "text-black text-xl text-left mb-5 font-bold" >
15+ Using the Serverless Framework, we will be able to create GraphQL Lambda
16+ powered by Apollo Server.
17+ </ BodyOne >
1118 < div className = "grid grid-cols-3 gap-5 ml-10" >
1219 { constants . techStack . map ( t => (
1320 < StackCard url = { t . logo } linkURL = { t . url } Title = { t . technology } />
You can’t perform that action at this time.
0 commit comments