Skip to content

Commit

Permalink
Merge branch 'master' into theBeginner86/chore/integrations
Browse files Browse the repository at this point in the history
  • Loading branch information
theBeginner86 authored Jan 19, 2024
2 parents d761ffc + aeb116c commit 61eb182
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 15 deletions.
5 changes: 4 additions & 1 deletion src/components/PlanCard/planCard.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,12 @@ const PlanCardWrapper = styled.section`
h2 {
margin-top: 1rem;
margin-bottom: 1rem;
color: ${(props) => props.theme.greyDCDCDCToGrey3B3B3B};
font-size: 24px;
font-weight: 500;
font-weight: 600;
margin-left: 1rem;
transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
Expand Down
7 changes: 4 additions & 3 deletions src/sections/ArchitectureDiagram/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,9 @@ const ArchitectureDiagram = () => {
</div>
<Container>
<div className={"feature-use-container"}>
<div>
<h2 className={"use-heading"}> Features that we provide</h2>
<div className={"use-heading"}>
<h2>Visual Tool That Get Things Done</h2>
<p> Not just pretty pictures. Data-linked visual apps to streamline all your efforts.</p>
</div>
<div className={"collaboration_display"}>
{card_data.map((x) => (
Expand All @@ -94,7 +95,7 @@ const ArchitectureDiagram = () => {
</div>
</Container>

<RelatedPicks content={content}/>
<RelatedPicks content={content} />
<SeeYou />
<Partners />
</WhiteboardWrapper>
Expand Down
8 changes: 8 additions & 0 deletions src/sections/ArchitectureDiagram/whiteboard.style.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ const WhiteboardWrapper = styled.div`
text-align: center;
margin-bottom: 2rem;
&>h2 {
margin-bottom: 0.5rem
}
&>p{
color: ${props => props.theme.greyA0AAAAToGrey666666};
}
.highlighted-text {
color: white;
padding: 0 0.5rem;
Expand Down
2 changes: 1 addition & 1 deletion src/sections/Community/Handbook/repo-data.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const repo_data = [
image: five,
site: "https://layer5.io/",
language: "Gatsby",
maintainers_name: ["Nikhil Ladha", "Mohith Gadireddy"],
maintainers_name: ["Nikhil Ladha"],
link: [
"https://layer5.io/community/members/nikhil-ladha",
"https://layer5.io/community/members/mohith-gadireddy",
Expand Down
2 changes: 1 addition & 1 deletion src/sections/Community/Web-based-from/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const WebBasedForm = () => {

useEffect(() => {
if (submit) {
axios.post("https://hook.us1.make.com/bmmi8btg3xb2fmx6kcavxmtf0a3uame2", {
axios.post("https://hook.us1.make.com/v66ana9yf3w11k4a1rf3epwquur1s9rd", {
memberFormOne,
MemberFormThirdValue,
MemberFormFourValue,
Expand Down
18 changes: 9 additions & 9 deletions src/sections/Home/FeaturesContainer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,15 @@ const FeaturesContainer = () => {
{
featuresInfo.map((feature) => (
<Features
key = {feature.title}
title = {feature.title}
show_custom_cursor = {feature.show_custom_cursor}
animationOne = {feature.animationOne}
redirectLink = {feature.redirectLink}
desc = {feature.desc}
imgLink = {feature.imgLink}
cursor = {feature.cursor}
redirectLinkWithImage = {feature.redirectLinkWithImage}
key={feature.title}
title={feature.title}
show_custom_cursor={feature.show_custom_cursor}
animationOne={feature.animationOne}
redirectLink={feature.redirectLink}
desc={feature.desc}
imgLink={feature.imgLink}
cursor={feature.cursor}
redirectLinkWithImage={feature.redirectLinkWithImage}
/>))
}
<TwoColLayout />
Expand Down

0 comments on commit 61eb182

Please sign in to comment.