Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

favicon and title setup #44

Merged
merged 1 commit into from
Aug 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
9 changes: 8 additions & 1 deletion src/pages/_document.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@ import { Head, Html, Main, NextScript } from 'next/document'
export default function Document() {
return (
<Html className="h-full bg-gray-50 antialiased" lang="en">
<Head />
<Head>
<title>GAPP Blocks</title>
<link rel="icon" href="/icons/favicon.ico" />
<meta
name="description"
content="We have got all the tools to turn your e-commerce ideas into reality.GAPP Blocks presents you with an easy no-code solution to kickstart your journey of success."
/>
</Head>
<body className="flex h-full flex-col">
<Main />
<NextScript />
Expand Down
7 changes: 0 additions & 7 deletions src/pages/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,6 @@ import { Newsletter } from '@/components/Newsletter'
export default function Home() {
return (
<>
<Head>
<title>GAPP Blocks</title>
<meta
name="description"
content="We have got all the tools to turn your e-commerce ideas into reality.GAPP Blocks presents you with an easy no-code solution to kickstart your journey of success."
/>
</Head>
<Header />
<main>
<Hero />
Expand Down