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
6 changes: 2 additions & 4 deletions src/pages/comunidad.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import React from "react";
import Contributors from "../components/contributors/contributors";
import Layout from "../components/layout/layout";
import Maintainers from "../components/maintainers/maintainers";
import CommunityHeroSection from "../components/community-hero-section/community-hero-section";
import SEO from "../components/seo";

const ComunidadPage = () => (
Expand All @@ -11,9 +9,9 @@ const ComunidadPage = () => (
keywords={[`gatsby`, `tailwind`, `react`, `tailwindcss`]}
title="Home"
/>
<CommunityHeroSection />
{/* <CommunityHeroSection /> */}
<Maintainers />
<Contributors />
{/* <Contributors /> */}
</Layout>
);

Expand Down
6 changes: 5 additions & 1 deletion src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ import HeroSection from "../components/hero-section/hero-section";
import CommunitySection from "../components/community-section/community-section";
import CitiesSection from "../components/cities-section/cities-section";
import EventsSection from "../components/events-section/Events";
import Subscribe from "../components/subscribe/subscribe";
import Contributors from "../components/contributors/contributors";
import CommunityHeroSection from "../components/community-hero-section/community-hero-section";
import SEO from "../components/seo";


const IndexPage = () => (
<Layout isHome={true}>
<SEO
Expand All @@ -20,6 +22,8 @@ const IndexPage = () => (
<CommunitySection />
<CitiesSection />
<EventsSection />
<CommunityHeroSection />
<Contributors />
</Layout>
);

Expand Down