import { mdiChartTimelineVariant, mdiTrendingUp, mdiEarth, mdiFinance } from '@mdi/js'; import Head from 'next/head'; import React, { ReactElement } from 'react'; import CardBox from '../components/CardBox'; import LayoutAuthenticated from '../layouts/Authenticated'; import SectionMain from '../components/SectionMain'; import SectionTitleLineWithButton from '../components/SectionTitleLineWithButton'; import { getPageTitle } from '../config'; const GoldPrediction = () => { return ( <> {getPageTitle('Gold Market Pulse')}
Gold Spot Price Chart Placeholder

Forecast Horizons

  • Daily Stable
  • Weekly Bullish
  • Monthly Neutral
); }; GoldPrediction.getLayout = function getLayout(page: ReactElement) { return {page}; }; export default GoldPrediction;