Skip to content

Commit

Permalink
using handbook components with sistent
Browse files Browse the repository at this point in the history
Signed-off-by: Lakshya Satpal <[email protected]>
  • Loading branch information
lakshz committed Feb 8, 2024
1 parent 74de18a commit a85b365
Show file tree
Hide file tree
Showing 7 changed files with 605 additions and 327 deletions.
7 changes: 7 additions & 0 deletions src/pages/projects/sistent/about.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

const SistentAbout = () => {
return <div>SistentAbout</div>;
};

export default SistentAbout;
7 changes: 7 additions & 0 deletions src/pages/projects/sistent/components.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

const SistentComponents = () => {
return <div>SistentComponents</div>;
};

export default SistentComponents;
7 changes: 7 additions & 0 deletions src/pages/projects/sistent/identity.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

const SistentIdentity = () => {
return <div>SistentIdentity</div>;
};

export default SistentIdentity;
65 changes: 0 additions & 65 deletions src/sections/Projects/Sistent/Sistent-sidebar/index.js

This file was deleted.

246 changes: 0 additions & 246 deletions src/sections/Projects/Sistent/Sistent-sidebar/sidebar.style.js

This file was deleted.

44 changes: 29 additions & 15 deletions src/sections/Projects/Sistent/index.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,38 @@
import React from "react";
import Sidebar from "./Sistent-sidebar";
import { Col, Row } from "../../../reusecore/Layout";
import SistentWrapper from "./sistent.style";
import HandbookCard from "../../../components/HandbookCard";

const SistentHome = () => {
return (
<SistentWrapper>
<Row>
<Col xs={12} lg={3}>
<Sidebar />
</Col>
<Col xs={12} lg={7}>
<h1>About</h1>
<p>
Colors when accurately applied can be a potent tool that enables
designers and developers to implement solutions with speed and
efficiency. Here are a couple of things to keep in mind.
</p>
</Col>
</Row>
<div className="page-header-section">
<h1>Sistent</h1>
</div>
<div className="community-home-subtitle">
<h3>Design system for Layer5 projects</h3>
</div>
<div className="community-home-container">
<HandbookCard
title="About"
description="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris."
to="/projects/sistent/about"
/>
<HandbookCard
title="Identity"
description="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris."
to="/projects/sistent/identity"
/>
<HandbookCard
title="Components"
description="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris."
to="/projects/sistent/components"
/>
<HandbookCard
title="Patterns & Templates"
description="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris."
to="/projects/sistent/patterns"
/>
</div>
</SistentWrapper>
);
};
Expand Down
Loading

0 comments on commit a85b365

Please sign in to comment.