Skip to content

Commit 98c5036

Browse files
committed
fix links and assets
1 parent 3bae8c8 commit 98c5036

File tree

11 files changed

+12
-13
lines changed

11 files changed

+12
-13
lines changed
File renamed without changes.

src/assets/logo.png

3.45 KB
Loading
File renamed without changes.

src/components/homepage/Footer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import PropTypes from 'prop-types'
33
import { createStyles, Container, Group, Anchor, Text } from '@mantine/core';
4-
import rhlogo from '../../../static/RHLogo.png'
4+
import rhlogo from '../../assets/RHLogo.png'
55

66
const useStyles = createStyles((theme) => ({
77
footer: {

src/components/homepage/HomePage.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import React from 'react';
22
import { createStyles, Overlay, Container, Title, Button, Image, Group } from '@mantine/core';
33
import { Link } from "gatsby"
4+
import Logo from "../../assets/opf-logo.png"
45

56
const useStyles = createStyles((theme) => ({
67
hero: {
@@ -88,11 +89,7 @@ export function HomeContent() {
8889
zIndex={0}
8990
/>
9091
<Container className={classes.container}>
91-
<Image
92-
src="https://www.operate-first.cloud/static/8d56de4f3d3afae74daab76e9e11c4aa/fcda8/logo.png"
93-
width={"50%"}
94-
height={"50%"}
95-
/>
92+
<img src={Logo} width={"50%"}></img>
9693
<Title className={classes.title}>a concept to incorporate operational experience into software projects</Title>
9794
<Group>
9895
<Link to="/getting-started">

src/components/homepage/Navbar.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
33
import { createStyles, Header, Container, Group, Burger, Paper, Transition } from '@mantine/core';
44
import { useBooleanToggle } from '@mantine/hooks';
55
import { BrandGithub, BrandSlack, BrandTwitter, BrandYoutube } from 'tabler-icons-react';
6-
import icon from '../../../static/opf-logo.png'
6+
import icon from '../../assets/opf-logo.png'
77
import { Link } from "gatsby"
88

99
const HEADER_HEIGHT = 60;

src/components/nav-tabs/AboutPage.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
import { Container, Text, Title } from '@mantine/core';
22
import React from 'react';
3+
import { Link } from "gatsby"
4+
35

46
export function AboutContent() {
57
return (
@@ -37,7 +39,7 @@ export function AboutContent() {
3739
Continue learning more about Operate First: <a href="https://www.operate-first.cloud/training/operate_first_intro" target="_blank" rel="noreferrer">Introduction to Operate First</a>
3840
</Text>
3941
<Text pt={10}>
40-
<a href="community">Get involved in our community</a>
42+
<Link to="/community">Get involved in our community</Link>
4143
</Text>
4244
<Text pt={10}>
4345
Start using Operate First cloud resources as an app developer (link coming soon)

src/components/nav-tabs/CommunityPage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export function CommunityContent() {
7979
Find our code on <a href="https://github.com/operate-first/apps">GitHub</a>, meet the community on Slack, and join our mailing lists for announcements and discussions:
8080
</Text>
8181
<Text py="sm">
82-
If you’re interested in data science, check out our data <a href="https://www.operate-first.cloud/data-science/projectsoverview.md">science projects</a>. If you are more interested in site reliability engineering, we have SRE resources to help you get started!
82+
If you’re interested in data science, check out our data <a href="https://old.operate-first.cloud/data-science/projectsoverview.md">science projects</a>. If you are more interested in site reliability engineering, we have SRE resources to help you get started!
8383
</Text>
8484
</Container>
8585
<Grid gutter={80} justify='center' style={{paddingTop: 20, margin: 0}}>

src/pages/data-scientist.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const CommunityCloudPage = () => {
3131
I’m a data scientist looking for an open source project where I can apply my skills to a real world problem with real data, and I’m tired of MNIST! Fork our github repo and make a PR to the <a href="https://github.com/aicoe-aiops/ocp-ci-analysis">AI4CI</a> project.
3232
</List.Item>
3333
<List.Item py="xs">
34-
I’m a site reliability engineer looking to make my life easier. I need to add some more intelligent automation into my cluster and application management process. Got anything for me? Of course! See our list of <a href="https://www.operate-first.cloud/data-science/projectsoverview.md">AI Ops projects</a> we’ve worked on.
34+
I’m a site reliability engineer looking to make my life easier. I need to add some more intelligent automation into my cluster and application management process. Got anything for me? Of course! See our list of <a href="https://old.operate-first.cloud/data-science/projectsoverview.md">AI Ops projects</a> we’ve worked on.
3535
</List.Item>
3636
<List.Item>
3737
I’m a data scientist, but have no idea how to use OpenShift or Kubernetes to deploy my models and get them out into the world! This <a href="https://github.com/AICoE/elyra-aidevsecops-tutorial">tutorial</a> will get you from 0 to 100 in no time.
@@ -49,7 +49,7 @@ const CommunityCloudPage = () => {
4949
</a>
5050
</Group>
5151
<Text mb="xl">
52-
<b>Source:</b> <a href="https://www.operate-first.cloud/data-science/">https://www.operate-first.cloud/data-science/</a>
52+
<b>Source:</b> <a href="https://old.operate-first.cloud/data-science/">https://old.operate-first.cloud/data-science/</a>
5353
</Text>
5454
</Container>
5555
<Footer />

src/pages/developer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const DeveloperPage = () => {
4444
Beginning in January 2022 the project is rolling out SRE training courses, which will incorporate meaningful examples from the running Op1st community cloud.
4545
</Text>
4646
<Text py="md">
47-
<b>Source:</b> <a href="https://www.operate-first.cloud/open-source-developers/">https://www.operate-first.cloud/open-source-developers/</a>
47+
<b>Source:</b> <a href="https://old.operate-first.cloud/open-source-developers/">https://old.operate-first.cloud/open-source-developers/</a>
4848
</Text>
4949
</Container>
5050
<Footer />

src/pages/srepractices.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const SREPracticesPage = () => {
3333
</List.Item>
3434
</List>
3535
<Text py="md">
36-
<b>Source:</b> <a href="https://www.operate-first.cloud/sre-learners/">https://www.operate-first.cloud/sre-learners/</a>
36+
<b>Source:</b> <a href="https://old.operate-first.cloud/sre-learners/">https://old.operate-first.cloud/sre-learners/</a>
3737
</Text>
3838
</Container>
3939
<Footer />

0 commit comments

Comments
 (0)