Skip to content

Commit

Permalink
feat: fix imports,
Browse files Browse the repository at this point in the history
fix imports of Layout component because it has changed,
see also: #12
  • Loading branch information
64J0 committed Oct 23, 2021
1 parent 20c5058 commit aaa6b78
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pages/contato/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useRef, useEffect } from "react";
import Head from "next/head";
import { FaLinkedin, FaGithub, FaTwitter } from "react-icons/fa";

import Layout from "../../components/layout";
import Layout from "../../components/Layout";
import GithubContribGraph from "../../components/GithubContribGraph";

import Age from "../../utils/Age";
Expand Down
2 changes: 1 addition & 1 deletion pages/cores/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Head from "next/head";
import React, { useState, useCallback } from "react";
import { MdAddCircle } from "react-icons/md";

import Layout from "../../components/layout";
import Layout from "../../components/Layout";
import ColorSection from "./ColorSection";

import styles from "./styles.module.scss";
Expand Down
2 changes: 1 addition & 1 deletion pages/graficos/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useState, useRef, useCallback } from "react";
import Head from "next/head";
import Chartjs, { ChartConfiguration } from "chart.js";

import Layout from "../../components/layout";
import Layout from "../../components/Layout";
import styles from "./styles.module.scss";

const GraficosPage: React.FC = () => {
Expand Down

0 comments on commit aaa6b78

Please sign in to comment.