forked from odigos-io/odigos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from alonkeyval/gen-1341-delete-old-setup=files
[GEN-1341] chore: delete old setup files
- Loading branch information
Showing
11 changed files
with
41 additions
and
153 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
'use client'; | ||
import React from 'react'; | ||
import { StepsList } from '@/components'; | ||
import { ChooseDestinationContainer } from '@/containers'; | ||
import { CardWrapper, PageContainer, StepListWrapper } from '../styled'; | ||
import { SideMenu } from '@/components'; | ||
import { SideMenuWrapper } from '../styled'; | ||
import { ChooseDestinationContainer } from '@/containers/main'; | ||
|
||
export default function ChooseDestinationPage() { | ||
return ( | ||
<PageContainer> | ||
<StepListWrapper> | ||
<StepsList currentStepIndex={1} /> | ||
</StepListWrapper> | ||
<CardWrapper> | ||
<ChooseDestinationContainer /> | ||
</CardWrapper> | ||
</PageContainer> | ||
<> | ||
<SideMenuWrapper> | ||
<SideMenu currentStep={3} /> | ||
</SideMenuWrapper> | ||
<ChooseDestinationContainer /> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,16 @@ | ||
'use client'; | ||
import React from 'react'; | ||
import { StepsList } from '@/components'; | ||
import { ChooseSourcesContainer } from '@/containers'; | ||
import { CardWrapper, PageContainer, StepListWrapper } from '../styled'; | ||
import { SideMenu } from '@/components'; | ||
import { ChooseSourcesContainer } from '@/containers/main'; | ||
import { SideMenuWrapper } from '../styled'; | ||
|
||
export default function ChooseSourcesPage() { | ||
return ( | ||
<PageContainer> | ||
<StepListWrapper> | ||
<StepsList currentStepIndex={0} /> | ||
</StepListWrapper> | ||
<CardWrapper> | ||
<ChooseSourcesContainer /> | ||
</CardWrapper> | ||
</PageContainer> | ||
<> | ||
<SideMenuWrapper> | ||
<SideMenu currentStep={2} /> | ||
</SideMenuWrapper> | ||
<ChooseSourcesContainer /> | ||
</> | ||
); | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,32 @@ | ||
'use client'; | ||
import React from 'react'; | ||
import Logo from '@/assets/logos/odigos-gradient.svg'; | ||
import { LogoWrapper, SetupPageContainer } from './styled'; | ||
import styled from 'styled-components'; | ||
|
||
const LayoutContainer = styled.div` | ||
width: 100%; | ||
height: 100vh; | ||
background-color: ${({ theme }) => theme.colors.primary}; | ||
display: flex; | ||
align-items: center; | ||
flex-direction: column; | ||
`; | ||
|
||
const MainContent = styled.div` | ||
display: flex; | ||
max-width: 1440px; | ||
width: 100vh; | ||
flex-direction: column; | ||
align-items: center; | ||
`; | ||
|
||
export default function SetupLayout({ | ||
children, | ||
}: { | ||
children: React.ReactNode; | ||
}) { | ||
return ( | ||
<SetupPageContainer> | ||
<LogoWrapper> | ||
<Logo /> | ||
</LogoWrapper> | ||
{children} | ||
</SetupPageContainer> | ||
<LayoutContainer> | ||
<MainContent>{children}</MainContent> | ||
</LayoutContainer> | ||
); | ||
} |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters