-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
492 additions
and
80 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
Large diffs are not rendered by default.
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
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
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
import PageLayout from '../../components/PageLayout'; | ||
import GlossaryTermPageIntro from '../../components/GlossaryTermPage/GlossaryTermPageIntro'; | ||
import GlossaryTermPage from '../../components/GlossaryTermPage'; | ||
import terms from '../../components/GlossarySearch/glossaryTerms.json'; | ||
import GlossaryTermPageAside from '../../components/GlossaryTermPage/GlossaryTermPageAside'; | ||
import GlossaryTermPageContent from '../../components/GlossaryTermPage/GlossaryTermPageContent'; | ||
|
||
const Term = () => { | ||
const term = terms.filter((term) => term.slug === 'amortized-costs')[0]; | ||
|
||
return ( | ||
<PageLayout | ||
title={`${term.termTitle} - Infracost Glossary`} | ||
description={term.pageTitle} | ||
pageClass="glossary-term__page" | ||
hideCTA={true} | ||
noIndex={false} | ||
> | ||
<GlossaryTermPageIntro title={term.pageTitle} toPath="/glossary" toText="FinOps Glossary" /> | ||
<GlossaryTermPage> | ||
<GlossaryTermPageContent term={term} /> | ||
<GlossaryTermPageAside term={term} /> | ||
</GlossaryTermPage> | ||
</PageLayout> | ||
); | ||
}; | ||
|
||
export default Term; |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
import PageLayout from '../../components/PageLayout'; | ||
import GlossaryTermPageIntro from '../../components/GlossaryTermPage/GlossaryTermPageIntro'; | ||
import GlossaryTermPage from '../../components/GlossaryTermPage'; | ||
import terms from '../../components/GlossarySearch/glossaryTerms.json'; | ||
import GlossaryTermPageAside from '../../components/GlossaryTermPage/GlossaryTermPageAside'; | ||
import GlossaryTermPageContent from '../../components/GlossaryTermPage/GlossaryTermPageContent'; | ||
|
||
const Term = () => { | ||
const term = terms.filter((term) => term.slug === 'aws')[0]; | ||
|
||
return ( | ||
<PageLayout | ||
title={`${term.termTitle} - Infracost Glossary`} | ||
description={term.pageTitle} | ||
pageClass="glossary-term__page" | ||
hideCTA={true} | ||
noIndex={false} | ||
> | ||
<GlossaryTermPageIntro title={term.pageTitle} toPath="/glossary" toText="FinOps Glossary" /> | ||
<GlossaryTermPage> | ||
<GlossaryTermPageContent term={term} /> | ||
<GlossaryTermPageAside term={term} /> | ||
</GlossaryTermPage> | ||
</PageLayout> | ||
); | ||
}; | ||
|
||
export default Term; |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
import PageLayout from '../../components/PageLayout'; | ||
import GlossaryTermPageIntro from '../../components/GlossaryTermPage/GlossaryTermPageIntro'; | ||
import GlossaryTermPage from '../../components/GlossaryTermPage'; | ||
import terms from '../../components/GlossarySearch/glossaryTerms.json'; | ||
import GlossaryTermPageAside from '../../components/GlossaryTermPage/GlossaryTermPageAside'; | ||
import GlossaryTermPageContent from '../../components/GlossaryTermPage/GlossaryTermPageContent'; | ||
|
||
const Term = () => { | ||
const term = terms.filter((term) => term.slug === 'azure')[0]; | ||
|
||
return ( | ||
<PageLayout | ||
title={`${term.termTitle} - Infracost Glossary`} | ||
description={term.pageTitle} | ||
pageClass="glossary-term__page" | ||
hideCTA={true} | ||
noIndex={false} | ||
> | ||
<GlossaryTermPageIntro title={term.pageTitle} toPath="/glossary" toText="FinOps Glossary" /> | ||
<GlossaryTermPage> | ||
<GlossaryTermPageContent term={term} /> | ||
<GlossaryTermPageAside term={term} /> | ||
</GlossaryTermPage> | ||
</PageLayout> | ||
); | ||
}; | ||
|
||
export default Term; |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
import PageLayout from '../../components/PageLayout'; | ||
import GlossaryTermPageIntro from '../../components/GlossaryTermPage/GlossaryTermPageIntro'; | ||
import GlossaryTermPage from '../../components/GlossaryTermPage'; | ||
import terms from '../../components/GlossarySearch/glossaryTerms.json'; | ||
import GlossaryTermPageAside from '../../components/GlossaryTermPage/GlossaryTermPageAside'; | ||
import GlossaryTermPageContent from '../../components/GlossaryTermPage/GlossaryTermPageContent'; | ||
|
||
const Term = () => { | ||
const term = terms.filter((term) => term.slug === 'chargeback')[0]; | ||
|
||
return ( | ||
<PageLayout | ||
title={`${term.termTitle} - Infracost Glossary`} | ||
description={term.pageTitle} | ||
pageClass="glossary-term__page" | ||
hideCTA={true} | ||
noIndex={false} | ||
> | ||
<GlossaryTermPageIntro title={term.pageTitle} toPath="/glossary" toText="FinOps Glossary" /> | ||
<GlossaryTermPage> | ||
<GlossaryTermPageContent term={term} /> | ||
<GlossaryTermPageAside term={term} /> | ||
</GlossaryTermPage> | ||
</PageLayout> | ||
); | ||
}; | ||
|
||
export default Term; |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
import PageLayout from '../../components/PageLayout'; | ||
import GlossaryTermPageIntro from '../../components/GlossaryTermPage/GlossaryTermPageIntro'; | ||
import GlossaryTermPage from '../../components/GlossaryTermPage'; | ||
import terms from '../../components/GlossarySearch/glossaryTerms.json'; | ||
import GlossaryTermPageAside from '../../components/GlossaryTermPage/GlossaryTermPageAside'; | ||
import GlossaryTermPageContent from '../../components/GlossaryTermPage/GlossaryTermPageContent'; | ||
|
||
const Term = () => { | ||
const term = terms.filter((term) => term.slug === 'cloud-computing')[0]; | ||
|
||
return ( | ||
<PageLayout | ||
title={`${term.termTitle} - Infracost Glossary`} | ||
description={term.pageTitle} | ||
pageClass="glossary-term__page" | ||
hideCTA={true} | ||
noIndex={false} | ||
> | ||
<GlossaryTermPageIntro title={term.pageTitle} toPath="/glossary" toText="FinOps Glossary" /> | ||
<GlossaryTermPage> | ||
<GlossaryTermPageContent term={term} /> | ||
<GlossaryTermPageAside term={term} /> | ||
</GlossaryTermPage> | ||
</PageLayout> | ||
); | ||
}; | ||
|
||
export default Term; |
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
import PageLayout from '../../components/PageLayout'; | ||
import GlossaryTermPageIntro from '../../components/GlossaryTermPage/GlossaryTermPageIntro'; | ||
import GlossaryTermPage from '../../components/GlossaryTermPage'; | ||
import terms from '../../components/GlossarySearch/glossaryTerms.json'; | ||
import GlossaryTermPageAside from '../../components/GlossaryTermPage/GlossaryTermPageAside'; | ||
import GlossaryTermPageContent from '../../components/GlossaryTermPage/GlossaryTermPageContent'; | ||
|
||
const Term = () => { | ||
const term = terms.filter((term) => term.slug === 'cost-anomalies')[0]; | ||
|
||
return ( | ||
<PageLayout | ||
title={`${term.termTitle} - Infracost Glossary`} | ||
description={term.pageTitle} | ||
pageClass="glossary-term__page" | ||
hideCTA={true} | ||
noIndex={false} | ||
> | ||
<GlossaryTermPageIntro title={term.pageTitle} toPath="/glossary" toText="FinOps Glossary" /> | ||
<GlossaryTermPage> | ||
<GlossaryTermPageContent term={term} /> | ||
<GlossaryTermPageAside term={term} /> | ||
</GlossaryTermPage> | ||
</PageLayout> | ||
); | ||
}; | ||
|
||
export default Term; |
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