Skip to content

Commit 0758757

Browse files
committed
chore: added google site verification meta tag
fix: google site verification
1 parent 47c3c7a commit 0758757

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/app/layout.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ export default function RootLayout({
1616
return (
1717
<html lang="en">
1818
<Head>
19-
{process.env.NEXT_PUBLIC_GOOGLE_SITE_VERIFICATION && (
19+
{process.env.GOOGLE_SITE_VERIFICATION && (
2020
<meta
2121
name="google-site-verification"
22-
content={process.env.NEXT_PUBLIC_GOOGLE_SITE_VERIFICATION}
22+
content={process.env.GOOGLE_SITE_VERIFICATION}
2323
/>
2424
)}
2525
</Head>
26-
<body className="container mx-auto px-4 py-4 md:py-8 min-h-screen flex flex-col gap-4">
27-
<header className="flex flex-col gap-2">
26+
<body className="container mx-auto px-4 py-4 md:py-8">
27+
<header className="flex flex-col gap-2 mb-4">
2828
<h1 className="text-4xl">
2929
<Link href="/">Wörtilizer</Link>
3030
</h1>

0 commit comments

Comments
 (0)