Skip to content

Commit 812438e

Browse files
committed
added copy for tech stack
1 parent f27f093 commit 812438e

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

src/components/landing/TechStack.js

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,20 @@
11
import React from "react"
22
import HeadingTwo from "../typography/HeadingTwo"
33
import HeadingThree from "../typography/HeadingThree"
4+
import BodyOne from "../typography/BodyOne"
45
import StackCard from "../cards/StackCard"
56
import constants from "../../constants"
67
const 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} />

0 commit comments

Comments
 (0)