Skip to content

Commit 17b7d6b

Browse files
fix path 2
Signed-off-by: Rajesh-Nagarajan-11 <rajeshnagarajan36@gmail.com>
1 parent f25f9b7 commit 17b7d6b

5 files changed

Lines changed: 57 additions & 7 deletions

File tree

src/collections/handbook/writing-program/content-form.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import React, { useState, useEffect } from "react";
2-
import Button from "../../../../reusecore/Button";
2+
import Button from "../../../reusecore/Button";
33
import axios from "axios";
44
import { Field, Form, Formik } from "formik";
55
import ContentFormWrapper from "./content-form.style";
6-
import layer5_img from "../../../../assets/images/layer5/layer5-only/svg/layer5-white-no-trim.svg";
6+
import layer5_img from "../../../assets/images/layer5/layer5-only/svg/layer5-white-no-trim.svg";
77

88
const ContentForm = () => {
99
const [memberFormOne, setMemberFormOne] = useState({});
Lines changed: 44 additions & 0 deletions
Loading

src/sections/Community/Handbook/handbook-single/HandbookPagination.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { Link } from "gatsby";
3-
import { PaginationWrapper } from "../../handbook-navigation/TocPagination.style";
3+
import { PaginationWrapper } from "../../../../components/handbook-navigation/TocPagination.style";
44

55
const HandbookPagination = ({ pages, currentSlug }) => {
66
const currentIndex = pages.findIndex(page => page.fields.slug === currentSlug);
@@ -11,7 +11,7 @@ const HandbookPagination = ({ pages, currentSlug }) => {
1111
<PaginationWrapper>
1212
{prevPage && (
1313
<Link to={prevPage.fields.slug} className="prev">
14-
{prevPage.frontmatter.title}
14+
{prevPage.frontmatter.title}
1515
</Link>
1616
)}
1717
{nextPage && (

src/sections/Community/Handbook/handbook-single/HandbookTOC.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import React from "react";
22
import { Link } from "gatsby";
3-
import { TocWrapper } from "../../handbook-navigation/toc.style";
3+
import { TocWrapper } from "../../../../components/handbook-navigation/toc.style";
44

55
const HandbookTOC = ({ pages, currentSlug }) => {
66
return (

src/sections/Community/Meshmates/index.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { ReactComponent as MeshmateStackImage } from "../../../assets/images/mes
1010

1111
import { Link } from "gatsby";
1212
import { FiArrowRight } from "@react-icons/all-files/fi/FiArrowRight";
13-
import BookComponent from "../Handbook/BookComponent/BookComponent";
13+
import HandbookCard from "../../../components/HandbookCard";
1414

1515
const Meshmates = () => {
1616
const data = useStaticQuery(
@@ -131,7 +131,13 @@ const Meshmates = () => {
131131
<div className="expect">
132132
<h5> What to Expect </h5>
133133
<h2> Engaging with a MeshMate</h2>
134-
<div className="bookcomponent"><BookComponent /></div>
134+
<div className="bookcomponent">
135+
<HandbookCard
136+
title="Community Handbook"
137+
description="Explore the Layer5 Community Handbook to learn more about our community, contribution guidelines, and resources."
138+
to="/community/handbook"
139+
/>
140+
</div>
135141
<p> The program pairs experienced Layer5 community members with community newcomers to ensure a smooth onboarding experience. There is a lot going in the Layer5 community. Projects and working groups move fast. MeshMates are committed to helping their mentees in identifying an area of the projects to engage within, working groups to join, growing their Cloud Native knowledge, and network of relationships. By connecting one-on-one, MeshMates will share tips on how to have the best community experience possible. </p>
136142
<p> Meshtees are encouraged to reach out to any MeshMate directly in order to pair up. Introduce yourself either on in the <a href="https://discuss.layer5.io/c/community/12">Layer5 discussion forum</a>. Help your MeshMate understand your current skills, ideal topics of learning, and areas of passion. Doing so will help them to point out various aspects of projects that you might find your first foothold. </p>
137143
</div>

0 commit comments

Comments
 (0)