Skip to content

Commit

Permalink
Change order of components no the landing page
Browse files Browse the repository at this point in the history
  • Loading branch information
martink635 committed Nov 26, 2024
1 parent 5a0bfdc commit 9df2379
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions components/sections/DevelopSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ const DevelopSection: React.FC<DevelopSectionProps> = ({
tabs,
}) => {
return (
<section className="relative overflow-hidden text-[#F6F7F9]">
<Container className="mt-48 mb-20 ">
<section className="relative overflow-hidden text-[#F6F7F9] mb-48">
<Container className="mb-20 ">
<GridContainer>
<Header
tagline={tagline}
Expand Down
14 changes: 7 additions & 7 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,6 @@ const Home: NextPage = (props: any) => {

<GeneralSection content={content.unstoppable} />

<Odyssey
title={content.odyssey.title}
content={content.odyssey.content}
ctas={content.odyssey.ctas as Array<CtaType>}
tagline={content.odyssey.tagline}
/>

<DevelopSection
tagline={content.develop.tagline}
title={content.develop.title}
Expand All @@ -52,6 +45,13 @@ const Home: NextPage = (props: any) => {
tabs={content.develop.tabs as Array<TabType>}
/>

<Odyssey
title={content.odyssey.title}
content={content.odyssey.content}
ctas={content.odyssey.ctas as Array<CtaType>}
tagline={content.odyssey.tagline}
/>

<GeneralSection content={content.news.content} />

<GeneralSection
Expand Down

0 comments on commit 9df2379

Please sign in to comment.