// import BlogMeta from 'components/BlogMeta'
import Footer from 'components/Footer/Footer'
import IndexPageHead from 'components/IndexPageHead'
// import Layout from 'components/Layout'
// import MetaDescription from 'components/MetaDescription'
import Navbar from 'components/Navbar/Navbar'
import CulturalSection from 'components/Sections/CulturalSection'
import Functions from 'components/Sections/FunctionsSection'
import HeroHomepage from 'components/Sections/HeroHomepageSection'
import HomeIntro from 'components/Sections/HomeIntroSection'
import WhatsNewSection from 'components/Sections/WhatsNewSection'
import type { Post, Settings } from 'lib/sanity.queries'
import Head from 'next/head'
import { NextSeo } from 'next-seo'
import TheStory from './Sections/TheStorySection'
//import { QueryClient, QueryClientProvider, useQuery } from '@tanstack/react-query'
export interface IndexPageProps {
preview?: boolean
loading?: boolean
posts: Post[]
settings: Settings
}
export default function IndexPage(props: IndexPageProps) {
const { preview, loading, posts, settings } = props
// const { title = demo.title } = settings || {}
//const queryClient = new QueryClient()
return (
<>