Skip to content

Commit

Permalink
Fix: headタグ調整
Browse files Browse the repository at this point in the history
  • Loading branch information
su-u committed Dec 10, 2023
1 parent b9ca90e commit 1102c9e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { Analytics } from '@vercel/analytics/react';
import Head from 'next/head';
import React from 'react';
import 'rsuite/dist/rsuite.min.css';
import '@/styles/globals.scss';
Expand All @@ -18,16 +19,16 @@ export default function RootLayout({ children }: { children: React.ReactNode })

return (
<html lang="ja">
<head>
<GoogleAnalytics />
<Head>
<title>{METADATA.title}</title>
<meta name="description" content={METADATA.description} />
<meta name="author" content={METADATA.author} />
<meta
name="google-site-verification"
content="XbfQBUU8iwwFG0-q5UtR_Rde1UfvDzdspEHt2tPs-Uw"
/>
</head>
<meta name="description" content={METADATA.description} />
<meta name="author" content={METADATA.author} />
<GoogleAnalytics />
</Head>
<body className={className}>
<Provider>{children}</Provider>
<Analytics />
Expand Down

1 comment on commit 1102c9e

@vercel
Copy link

@vercel vercel bot commented on 1102c9e Dec 10, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

tools-su-u-dev – ./

tools-su-u-dev-git-main-su-u.vercel.app
tools-su-u-dev-su-u.vercel.app
tools-su-u-dev.vercel.app
tools.su-u.dev

Please sign in to comment.