Skip to content

Commit b21d3e0

Browse files
authored
Fix/remove possible (#205)
* Remove PossibleBanner and SecondaryBanner components from DevelopersHomepage and Navbar * Remove PossibleBanner component from QuickstartsPages
1 parent 6f9d3c1 commit b21d3e0

3 files changed

Lines changed: 0 additions & 6 deletions

File tree

src/components/DevelopersHomepage/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,10 @@ import JumpIn from './JumpIn';
22
import GetStarted from './GetStarted';
33
import TopPicks from './TopPicks';
44
import LinksImages from './LinksImg';
5-
import PossibleBanner from '../PossibleBanner';
65

76
export default function DevelopersHomepage() {
87
return (
98
<>
10-
<PossibleBanner />
119
<JumpIn />
1210
<GetStarted />
1311
<TopPicks />

src/components/QuickstartsPages/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import styles from './styles.module.css';
44
import Link from '@docusaurus/Link';
55
import { Typography } from '@teradata-web/react-components';
66
import { translate } from '@docusaurus/Translate';
7-
import PossibleBanner from '../PossibleBanner';
87

98
const FeatureTitle = translate({ message: 'home_page.categories' });
109
const Guides = [
@@ -103,7 +102,6 @@ function Feature2({ title, description, href }) {
103102
export default function Categories() {
104103
return (
105104
<>
106-
<PossibleBanner />
107105
<section className={clsx(styles.features, styles.fGuides)}>
108106
<div className={clsx('container', styles.container)}>
109107
<br/>

src/theme/Navbar/index.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import SearchBar from '../SearchBar';
1818
import MatDisclaimer from '../../components/MatDisclaimer';
1919
import SelectComponent from '../../components/SelectComponent/SelectComponent';
2020
import '../DocSidebar/styles.css';
21-
import SecondaryBanner from '../../components/PossibleBanner/secondaryBanner';
2221

2322
function translateNavItems(navItems: NavListItem[]): NavListItem[] {
2423
const location = useLocation();
@@ -163,7 +162,6 @@ export default function Navbar() {
163162
selectedLanguage={defaultLang}
164163
secondaryMenu={secondaryMenuDetails}
165164
></Header>
166-
<SecondaryBanner />
167165
<MatDisclaimer />
168166
</>
169167
);

0 commit comments

Comments
 (0)