import React from 'react' import { DefaultLayout } from 'components/DefaultLayout' import { useProductGuidesContext } from 'components/context/ProductGuidesContext' import { LandingSection } from 'components/landing/LandingSection' import { GuidesHero } from 'components/guides/GuidesHero' import { LearningTracks } from 'components/guides/LearningTracks' import { ArticleCards } from 'components/guides/ArticleCards' import { useTranslation } from 'components/hooks/useTranslation' export const ProductGuides = () => { const { title, learningTracks, includeGuides } = useProductGuidesContext() const { t } = useTranslation('product_guides') return ( {learningTracks && learningTracks.length > 0 && ( )} {includeGuides && ( )} ) }