Skip to content

Commit dfceea8

Browse files
committed
Add hero section content
Add welcome text Add hero illustration (open hybrid cloud image)
1 parent 8f3b81b commit dfceea8

File tree

2 files changed

+26
-11
lines changed

2 files changed

+26
-11
lines changed

src/app/Pages/Dashboard/Home.tsx

+26-11
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,42 @@
11
import * as React from 'react'
22
import {
3-
PageSectionVariants, PageSection, Title, Bullseye, TitleSizes, Text, TextVariants,
3+
PageSectionVariants,
4+
PageSection,
5+
Title,
6+
Flex,
7+
FlexItem
48
} from '@patternfly/react-core'
5-
import { useDocumentTitle } from '@app/utils/useDocumentTitle'
9+
import {
10+
useDocumentTitle
11+
} from '@app/utils/useDocumentTitle'
612
import Footer from '@app/components/Footer'
13+
import logo from '@app/bgimages/ohc-hero.png'
714

815
const Home: React.FunctionComponent<{ title: string }> = ({ title }) => {
916

1017
useDocumentTitle(title)
1118
return (
1219
<div>
1320
<PageSection className='hero-section'>
14-
<Text className='hero-text' component={TextVariants.h1}>
15-
Text text text
16-
</Text>
21+
<Flex className='hero-text' alignItems={{
22+
default: 'alignItemsCenter'
23+
}}>
24+
<FlexItem>
25+
<Title headingLevel='h1' size='3xl'>
26+
Welcome to Cloud Image Directory
27+
</Title>
28+
<Title headingLevel='h1' size='lg'>
29+
Get the images you need to start developing your Linux on-cloud experience.
30+
</Title>
31+
</FlexItem>
32+
<FlexItem
33+
spacer={{ default: 'spacer2xl' }}
34+
align={{ default: 'alignRight' }}>
35+
<img src={logo} style={{ height: 200 }} />
36+
</FlexItem>
37+
</Flex>
1738
</PageSection>
1839
<PageSection variant={PageSectionVariants.light}>
19-
<Bullseye>
20-
<Title headingLevel="h1" size={TitleSizes['4xl']}>Cloud Image Directory</Title>
21-
</Bullseye>
22-
<Bullseye>
23-
<Title headingLevel="h2" size={TitleSizes['1xl']}>Providing Easy Access to Linux Cloud Images Since 2023</Title>
24-
</Bullseye>
2540
</PageSection>
2641
<Footer />
2742
</div>

src/app/bgimages/ohc-hero.png

32.7 KB
Loading

0 commit comments

Comments
 (0)