|
1 | 1 | import './globals.scss';
|
2 |
| -import GithubCorner from '@/components/GithubCorner'; |
3 | 2 | import ParticlesJs from '@/components/ParticlesJs';
|
4 | 3 | import ChartInit from '@/components/ChartInit';
|
5 | 4 | import { GoogleAnalytics } from '@next/third-parties/google';
|
6 | 5 | import Footer from '@/components/Footer';
|
7 |
| -import RateLimit from '@/components/RateLimit'; |
8 |
| -import Header from '@/components/Header'; |
9 | 6 |
|
10 | 7 | export const metadata = {
|
| 8 | + metadataBase: new URL(process.env.BASE_URL), |
11 | 9 | title: 'GitHub Profile Visualizer',
|
12 | 10 | description:
|
13 | 11 | 'Gain valuable insights into your GitHub profile effortlessly. Explore your coding journey with intuitive visualizations and unlock a deeper understanding of your contributions, repositories, and activity. Dive into your GitHub universe with ease and clarity.',
|
| 12 | + keywords: [ |
| 13 | + 'GitHub Profile Visualizer', |
| 14 | + 'GitHub Profile Analyzer', |
| 15 | + 'GitHub Profile Insights', |
| 16 | + 'GitHub Profile Stats', |
| 17 | + 'GitHub Profile Summary', |
| 18 | + 'GitHub Profile Overview', |
| 19 | + 'GitHub Profile Analysis', |
| 20 | + ], |
14 | 21 | openGraph: {
|
15 | 22 | title: 'Git Glance',
|
16 |
| - images: `${process.env.BASE_URL}/banner.png`, |
| 23 | + images: `/banner.png`, |
17 | 24 | icons: {
|
18 |
| - icon: '/favicon.ico', |
| 25 | + icon: `/favicon.ico`, |
19 | 26 | },
|
| 27 | + type: 'website', |
| 28 | + }, |
| 29 | + alternates: { |
| 30 | + canonical: '/', |
| 31 | + }, |
| 32 | + manifest: '/site.webmanifest', |
| 33 | + creator: 'devxprite', |
| 34 | +}; |
| 35 | + |
| 36 | +export const viewport = { |
| 37 | + colorScheme: 'dark', |
| 38 | + verification: { |
| 39 | + google: 'koBxrTJwnDsFGPdjUesKqkWAgmhsZyvWWlDkwv4cOpw', |
20 | 40 | },
|
21 | 41 | };
|
22 | 42 |
|
@@ -47,12 +67,10 @@ export default function RootLayout({ children }) {
|
47 | 67 | <html lang="en">
|
48 | 68 | <GoogleAnalytics gaId="G-C2EK8WWR4Y" />
|
49 | 69 | <head>
|
50 |
| - <meta name="google-site-verification" content="koBxrTJwnDsFGPdjUesKqkWAgmhsZyvWWlDkwv4cOpw" /> |
51 |
| - <meta name="color-scheme" content="dark" /> |
| 70 | + <meta name="thumbnail" content={`${process.env.BASE_URL}/banner.png`} /> |
52 | 71 | <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
|
53 | 72 | <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
|
54 | 73 | <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
|
55 |
| - <link rel="manifest" href="/site.webmanifest" /> |
56 | 74 | <script type="application/ld+json" dangerouslySetInnerHTML={{ __html: JSON.stringify(jsonLd) }} />
|
57 | 75 | </head>
|
58 | 76 |
|
|
0 commit comments