Skip to content

Commit

Permalink
feat: change SEO description & sitemap base URL
Browse files Browse the repository at this point in the history
  • Loading branch information
zeim839 committed Oct 6, 2024
1 parent 7183f77 commit c42217e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gatsby-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import type { GatsbyConfig } from "gatsby"
const config: GatsbyConfig = {
siteMetadata: {
title: `UF Open Source Club`,
siteUrl: `https://www.ufosc.org`,
siteUrl: `https://ufosc.org`,
},
plugins: [
"gatsby-plugin-image",
Expand Down
8 changes: 7 additions & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@ const IndexPage: React.FC<PageProps> = (props: { data: any }) => (
)

export default IndexPage
export const Head: HeadFC = () => <SEO />
export const Head: HeadFC = () => (
<SEO
title={"UF Open Source Club"}
desc={"Home of the University of Florida's Open Source Community in Gainesville. Participate in Open Source and learn practical software development outside of the classroom with UF's Open Source Club (UF OSC)."}
/>
)

export const pageQuery = graphql`
{
news: allMarkdownRemark(sort: { frontmatter: { date: DESC } }) {
Expand Down

0 comments on commit c42217e

Please sign in to comment.