Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Link } from "gatsby"
import React from "react"
import "./Banner.scss"

export default function BannerLis({ data }) {
export default function BannerList({ data }) {
const title = data?.title
const cards = data?.Card.map(item => {
return (
Expand Down
2 changes: 1 addition & 1 deletion src/components/HomePage/HomeContainer/HomeContainer.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import Banner from "../../Banner/Banner"
import DualSection from "../../DualSection/DualSection"
import OneSection from "../../DualSection/OneSection"
import Text from "../../Text/Text"
import BannerList from "../../BannerList/BannerLis"
import BannerList from "../../BannerList/BannerList"
const bodyComponents = {
"components.banner": data => <Banner data={data} />,
"home.transition": data => <AnimatedTransitionContinous data={data} />,
Expand Down
2 changes: 1 addition & 1 deletion src/components/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import CasesList from "./CasesSection/CasesList"
import LogosSection from "./LogosSection/logosSection"
import Form from "./Form/Form"
import Banner from "./Banner/Banner"
import BannerList from "./BannerList/BannerLis"
import BannerList from "./BannerList/BannerList"
import ExpandGrid from "./expandGrid/ExpandGrid"
import Catsone from "./Catsone/catsone"
import Text from "./Text/Text"
Expand Down
6 changes: 0 additions & 6 deletions src/templates/LandingPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,6 @@ import {
Quote
} from "../components"

// componentes del body
import BannerList from "../components/BannerList/BannerLis"
import ExpandGrid from "../components/expandGrid/ExpandGrid"
import Catsone from "../components/Catsone/catsone"
import Text from "../components/Text/Text"
import Form from "../components/Form/Form"
import VideoBackground from "../components/videoBackground/VideoBackground"


Expand Down