Skip to content

Commit

Permalink
Head META hotfix
Browse files Browse the repository at this point in the history
Added head module to home to insert title and description to site meta - to fix title display for mobile issues noted (resolves desktop meta/title also).
  • Loading branch information
tomtranmer committed Sep 27, 2023
1 parent 867a1c0 commit 782deb0
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,16 @@ import styles from '@/styles/Home.module.css'
import Navbar from 'components/Navbar'
import LandingPage from './landingpage'



export default function Home() {
return (
<>
<Navbar />
<LandingPage />
<Head>
<title>BanklessCard.xyz</title>
<meta name='description' content='Support your community with every swipe!' />
</Head>

<Navbar />
<LandingPage />
</>
)
}

0 comments on commit 782deb0

Please sign in to comment.