// SECTION: WHATSNEW import { createClient } from '@sanity/client' import axios from 'axios' import { projectId } from 'lib/sanity.api' import Image from 'next/image' import Link from 'next/link' import React, { Children, useEffect, useState } from 'react' import Tippy from '@tippyjs/react' import Container from 'components/BlogContainer' // import { Carousel, Typography, Button } from '@material-tailwind/react' import { Fade, Slide } from 'react-awesome-reveal' //import { getImageLink } from '../../lib/wordpress.image' import WhatsNewMediaCorner from 'components/Sections/WhatsNewMediaCorner' import WhatsNewMonthlyUpdate from 'components/Sections/WhatsNewMonthlyUpdate' import WhatsNewMonthlyUpdate2 from 'components/Sections/WhatsNewMonthlyUpdate2' import WhatsNewBanner from 'components/Sections/WhatsnewSectionBanner' const client = projectId ? createClient({ projectId: process.env.NEXT_PUBLIC_SANITY_PROJECT_ID, dataset: process.env.NEXT_PUBLIC_SANITY_DATASET, apiVersion: process.env.NEXT_PUBLIC_SANITY_API_VERSION, useCdn: true, token: process.env.SANITY_API_READ_TOKEN, }) : null const WhatsNewSection = () => { return (

What’s New in GWK

This Month

{/* col 1 */}
{/* col 2 // Banner */}
) // } } export default WhatsNewSection