Commit 49d9fae6 authored by 박민석's avatar 박민석

update App layout

parent dc40a3bf
// @ts-nocheck // @ts-nocheck
import './styles/index.scss' import './styles/index.scss'
import styled from 'styled-components'
import Banner from './components/Banner' import Banner from './components/Banner'
import Header from './components/Header' import Header from './components/Header'
import Section from './components/Section' import Section from './components/Section'
...@@ -8,62 +9,74 @@ import Footer from './components/Footer' ...@@ -8,62 +9,74 @@ import Footer from './components/Footer'
function App () { function App () {
return ( return (
<> <Root>
<Header /> <Main>
<Banner /> <Header />
<Section title='Products' gap='3rem' display='grid'> <Banner />
<Card <Section title='Products' gap='3rem' display='grid'>
title='BXM' <Card
subTitle='Business eXcellence Framework' title='BXM'
mainDesc='고성능 Java 애플리케이션 개발 및 운영 프레임워크' subTitle='Business eXcellence Framework'
subDesc={[ mainDesc='고성능 Java 애플리케이션 개발 및 운영 프레임워크'
'고성능 아키텍처', subDesc={[
'안정적 시스템', '고성능 아키텍처',
'개발 생산성과 품질 향상', '안정적 시스템',
'확장성', '개발 생산성과 품질 향상',
'클라우드 지원', '확장성',
]}/> '클라우드 지원',
<Card ]}/>
title='BXCM' <Card
subTitle='Business eXcellence Cloud Framework' title='BXCM'
mainDesc='구조화된 Cloud Native Framework' subTitle='Business eXcellence Cloud Framework'
subDesc={[ mainDesc='구조화된 Cloud Native Framework'
'시스템 구축 전 과정 지원', subDesc={[
'보안', '시스템 구축 전 과정 지원',
'표준화 및 개발 생산성', '보안',
'MSA 환경의 보상거래 패턴 지원', '표준화 및 개발 생산성',
'안정적 시스템 운영', 'MSA 환경의 보상거래 패턴 지원',
'거래 패턴 지원', '안정적 시스템 운영',
'Regulation을 위한 Layer', '거래 패턴 지원',
'표준전문 거래제어', 'Regulation을 위한 Layer',
]}/> '표준전문 거래제어',
<Card ]}/>
title='BXI' <Card
subTitle='Business eXcellence Integrator' title='BXI'
mainDesc='대내외 인터페이스 통합 솔루션' subTitle='Business eXcellence Integrator'
subDesc={[ mainDesc='대내외 인터페이스 통합 솔루션'
'BXI-FEP: 대외시스템 연계', subDesc={[
'BXI-EAI: 대내시스템 연계', 'BXI-FEP: 대외시스템 연계',
'BXI-MCI: 단말 연계', 'BXI-EAI: 대내시스템 연계',
]}/> 'BXI-MCI: 단말 연계',
<Card ]}/>
title='BXCP' <Card
subTitle='Business eXcellence Cloud Platform' title='BXCP'
mainDesc='지속적 혁신이 가능한 Cloud Native DevOps Platform' subTitle='Business eXcellence Cloud Platform'
subDesc={[ mainDesc='지속적 혁신이 가능한 Cloud Native DevOps Platform'
'Kubernetes Multi-Cluster', subDesc={[
'Multi-Tenancy', 'Kubernetes Multi-Cluster',
'애플리케이션 빌드 & 배포 표준 템플릿', 'Multi-Tenancy',
'애플리케이션 운영 & 관리 표준 템플릿', '애플리케이션 빌드 & 배포 표준 템플릿',
'안정적 운영', '애플리케이션 운영 & 관리 표준 템플릿',
'시스템 통합 관리', '안정적 운영',
'사용자 통계', '시스템 통합 관리',
'다양한 모니터링', '사용자 통계',
]}/> '다양한 모니터링',
</Section> ]}/>
</Section>
</Main>
<Footer /> <Footer />
</> </Root>
) )
} }
const Root = styled.div`
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
`
const Main = styled.main`
flex-grow: 1;
`
export default App export default App
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment