rename homepage file

This commit is contained in:
desmukh 2023-01-09 01:19:24 +05:00
parent 796826aecc
commit a2c3602641
1 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ const coreValues = [
{ label: "Transparency", path: "/"}, { label: "Transparency", path: "/"},
] ]
const BlogIndex = ({ data, location }) => { const HomePage = ({ data, location }) => {
const siteTitle = data.site.siteMetadata?.title || `Title` const siteTitle = data.site.siteMetadata?.title || `Title`
const posts = data.allMarkdownRemark.nodes const posts = data.allMarkdownRemark.nodes
@ -126,7 +126,7 @@ const BlogIndex = ({ data, location }) => {
) )
} }
export default BlogIndex export default HomePage
/** /**
* Head export to define metadata for the page * Head export to define metadata for the page