Skip to content

Commit

Permalink
restore layout (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
paulinabjacykowska authored Jul 14, 2023
1 parent ddece02 commit e7159ff
Showing 1 changed file with 18 additions and 15 deletions.
33 changes: 18 additions & 15 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Head from '@docusaurus/Link';
import Layout from '@theme/Layout';
import React from 'react';

import { LayoutBase } from '../components/LayoutBase';
Expand Down Expand Up @@ -28,21 +29,23 @@ const IndexPage = () => {
type="image/webp"
/>
</Head>
<LayoutBase>
<Hero />
<KeyFunctionalitiesSection />
<StepsSection />
<CTASection
heading="How can these solutions help your project?"
buttonText="Ask our CTO"
/>
<WhatYouGetSection />
<TestProductSection />
<PricingSection />
<TrustedByOpenSourceSection />
<FAQSection />
<Footer />
</LayoutBase>
<Layout>
<LayoutBase>
<Hero />
<KeyFunctionalitiesSection />
<StepsSection />
<CTASection
heading="How can these solutions help your project?"
buttonText="Ask our CTO"
/>
<WhatYouGetSection />
<TestProductSection />
<PricingSection />
<TrustedByOpenSourceSection />
<FAQSection />
<Footer />
</LayoutBase>
</Layout>
</>
);
};
Expand Down

0 comments on commit e7159ff

Please sign in to comment.