Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/PossibleBanner/secondaryBanner.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,15 @@ const SecondaryBanner = () => {
const shouldDisplayAlert = !pathsNoAlert.includes(currentPath);
if (!shouldDisplayAlert) return null;

const quickstartsLink = "https://www.teradata.com/events/possible?utm_source=developer-site&utm_medium=display&utm_campaign=gbl-possible-devrel&utm_content=developer-quickstarts&utm_id=701V500000HTemgIAD";
const quickstartsLink = "https://www.teradata.com/customers/research-panel";

return (
<div className={styles.secondaryBanner}>
<span className={styles.bannerText}>
Learn how to build the future of AI at Possible 2025.
Join our Research Panel and help shape the future of Teradata.
</span>
<a className={styles.bannerTextLink} href={quickstartsLink} target="_blank" rel="noopener noreferrer">
Register now
Sign up.
</a>
</div>
);
Expand Down
2 changes: 2 additions & 0 deletions src/theme/Navbar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import SearchBar from '../SearchBar';
import MatDisclaimer from '../../components/MatDisclaimer';
import SelectComponent from '../../components/SelectComponent/SelectComponent';
import '../DocSidebar/styles.css';
import SecondaryBanner from '../../components/PossibleBanner/secondaryBanner'

function translateNavItems(navItems: NavListItem[]): NavListItem[] {
const location = useLocation();
Expand Down Expand Up @@ -162,6 +163,7 @@ export default function Navbar() {
selectedLanguage={defaultLang}
secondaryMenu={secondaryMenuDetails}
></Header>
<SecondaryBanner />
<MatDisclaimer />
</>
);
Expand Down
Loading