Skip to content

Commit

Permalink
Merge pull request #196 from estartando-devs/develop
Browse files Browse the repository at this point in the history
fix: temporary hiding subscribe button
  • Loading branch information
Brenont authored May 20, 2024
2 parents 7c20cbc + 2029f69 commit b4e92ef
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import {
OurResults,
SelectiveProcess,
StudentProfile,
Subscribe,
// Subscribe,
WhatWeTeach,
} from '../components';
import { BannerSubscribe } from '../components/Subscribe/BannerSubscribe';
// import { BannerSubscribe } from '../components/Subscribe/BannerSubscribe';
import {
cousesMock,
howWeDoMock,
Expand All @@ -40,15 +40,15 @@ const Home = () => {

return (
<Layout>
<BannerSubscribe />
{/* <BannerSubscribe /> */}
<Header />
<WhatWeTeach {...whatWeTeachMock} />
<Courses {...cousesMock} />
<HowWeDo {...howWeDoMock} />
<StudentProfile {...studentProfileSection} />
<SelectiveProcess {...scheduleMock} />
<OurResults />
<Subscribe />
{/* <Subscribe /> */}
<Footer />
</Layout>
);
Expand Down

0 comments on commit b4e92ef

Please sign in to comment.