import './style.css' import '@hashicorp/nextjs-scripts/lib/nprogress/style.css' import Router from 'next/router' import Head from 'next/head' import NProgress from '@hashicorp/nextjs-scripts/lib/nprogress' import { ErrorBoundary } from '@hashicorp/nextjs-scripts/lib/bugsnag' import createConsentManager from '@hashicorp/nextjs-scripts/lib/consent-manager' import useAnchorLinkAnalytics from '@hashicorp/nextjs-scripts/lib/anchor-link-analytics' import HashiHead from '@hashicorp/react-head' import HashiStackMenu from '@hashicorp/react-hashi-stack-menu' import AlertBanner from '@hashicorp/react-alert-banner' import Footer from '../components/footer' import ProductSubnav from '../components/subnav' import alertBannerData, { ALERT_BANNER_ACTIVE } from '../data/alert-banner' import Error from './_error' NProgress({ Router }) const { ConsentManager, openConsentManager } = createConsentManager({ preset: 'oss', }) export default function App({ Component, pageProps }) { useAnchorLinkAnalytics() return ( {ALERT_BANNER_ACTIVE && ( )}