Skip to content

Commit a0aaee7

Browse files
author
Tiko
committed
fixed imports for content
1 parent 666794d commit a0aaee7

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

components/src/containers/CommunicationBlock/CommunicationBlock.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import styled from "styled-components";
33
import IconTitle from "../../components/IconTitle";
44
import { Envelope } from "../../icons";
55
import { Paragraph } from "../../components/Typography";
6-
import { footerContent } from "../../components/content";
6+
import { footerContent } from "../../content";
77
import { ThemeColors } from "../../theme";
88
import { WithStyle } from "../../types/utils";
99

components/src/content/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
export * from "./content";
1+
export * from "./content";
2+
export * from "./contentGenerics";

components/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
export { default as GlobalStyles } from "./globalStyle";
22
export * from "./theme";
33
export * from "./helpers";
4-
export * from "./content/content";
4+
export * from "./content";

components/src/sections/Footer/Components/Contact.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { Heading } from "../../../components/Typography";
44
import Button from "../../../components/Button";
55
import { LongArrow } from "../../../icons";
66
import Link from "next/link";
7-
import { footerContent } from "../../../components/content";
7+
import { footerContent } from "../../../content";
88
import { breakpointNameToPx, responsiveValuesCSS } from "../../../helpers/responsiveCss";
99

1010

0 commit comments

Comments
 (0)