diff --git a/src/components/PossibleBanner/secondaryBanner.js b/src/components/PossibleBanner/secondaryBanner.js
index 0e7621937d..4bab897a39 100644
--- a/src/components/PossibleBanner/secondaryBanner.js
+++ b/src/components/PossibleBanner/secondaryBanner.js
@@ -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 (
- Learn how to build the future of AI at Possible 2025.
+ Join our Research Panel and help shape the future of Teradata.
- Register now
+ Sign up.
);
diff --git a/src/theme/Navbar/index.tsx b/src/theme/Navbar/index.tsx
index efc73b417e..3f496eb4ca 100644
--- a/src/theme/Navbar/index.tsx
+++ b/src/theme/Navbar/index.tsx
@@ -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();
@@ -162,6 +163,7 @@ export default function Navbar() {
selectedLanguage={defaultLang}
secondaryMenu={secondaryMenuDetails}
>
+
>
);