Skip to content

Commit

Permalink
fix build error
Browse files Browse the repository at this point in the history
Signed-off-by: lakshya <[email protected]>
  • Loading branch information
lakshz committed Mar 14, 2024
1 parent 3f368f7 commit c5f1c00
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/sections/Projects/Sistent/identity/color/code.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import React from "react";
import { navigate } from "gatsby";
import { useLocation } from "@reach/router";

import BrandColors from "../../../../../assets/images/app/projects/sistent/brand-colors-table.png";
import GreyscaleColors from "../../../../../assets/images/app/projects/sistent/greyscale-colors-table.png";
import BgColors from "../../../../../assets/images/app/projects/sistent/bg-colors-table.png";
Expand All @@ -23,7 +25,7 @@ import { useStyledDarkMode } from "../../../../../theme/app/useStyledDarkMode";

const ColorCode = () => {
const { isDark } = useStyledDarkMode();

const location = useLocation();
return (
<SistentLayout title="Color">
<div className="content">
Expand Down
3 changes: 3 additions & 0 deletions src/sections/Projects/Sistent/identity/color/guidance.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import React from "react";
import { navigate } from "gatsby";
import { useLocation } from "@reach/router";

import { Col, Row } from "../../../../../reusecore/Layout";
import TonalPalettes from "../../../../../assets/images/app/projects/sistent/tonal-palettes-full.png";
import TonalPalettesDark from "../../../../../assets/images/app/projects/sistent/tonal-palettes-full-dark.png";
Expand All @@ -12,6 +14,7 @@ import Button from "../../../../../reusecore/Button";

const ColorGuidance = () => {
const { isDark } = useStyledDarkMode();
const location = useLocation();

return (
<SistentLayout title="Color">
Expand Down

0 comments on commit c5f1c00

Please sign in to comment.