@@ -10,7 +10,7 @@ import BlogButton from "@/Components/UI/BlogButton";
1010import ErrorBoundary from "@/Components/common/ErrorBoundary" ;
1111import { Suspense } from "react" ;
1212import WhatsAppButton from "@/Components/UI/WhatsAppButton" ;
13- import { getPersonSchema , getWebSiteSchema } from "@/utils/structuredData" ;
13+ import { getPersonSchema , getWebSiteSchema , getProfilePageSchema , getFAQSchema , getSiteNavigationSchema , getProfessionalServiceSchema , getServiceSchema , getProjectSchema } from "@/utils/structuredData" ;
1414import { baseURL } from "@/utils/api" ;
1515import { Analytics } from '@vercel/analytics/next' ;
1616import { SpeedInsights } from "@vercel/speed-insights/next"
@@ -258,7 +258,12 @@ export default function RootLayout({
258258 < meta name = "twitter:image" content = { `${ baseUrl } /UtkarshSorathia.webp` } />
259259 < meta name = "twitter:image:src" content = { `${ baseUrl } /UtkarshSorathia.webp` } />
260260 < meta name = "twitter:image:alt" content = "Utkarsh Sorathia - Full Stack Developer Portfolio" />
261+ < meta name = "thumbnail" content = { `${ baseUrl } /UtkarshSorathia.webp` } />
261262 < link rel = "me" href = "https://www.wikidata.org/wiki/Q137171536" />
263+ < link rel = "me" href = "https://www.github.com/Utkarsh-Sorathia" />
264+ < link rel = "me" href = "https://www.linkedin.com/in/utkarsh-sorathia-a9292b22a" />
265+ < link rel = "me" href = "https://x.com/utkarshsor03" />
266+ < link rel = "me" href = "https://www.instagram.com/utkarsh__sorathia" />
262267 < script
263268 type = "application/ld+json"
264269 dangerouslySetInnerHTML = { {
@@ -271,6 +276,42 @@ export default function RootLayout({
271276 __html : JSON . stringify ( getWebSiteSchema ( ) ) ,
272277 } }
273278 />
279+ < script
280+ type = "application/ld+json"
281+ dangerouslySetInnerHTML = { {
282+ __html : JSON . stringify ( getProfilePageSchema ( ) ) ,
283+ } }
284+ />
285+ < script
286+ type = "application/ld+json"
287+ dangerouslySetInnerHTML = { {
288+ __html : JSON . stringify ( getFAQSchema ( ) ) ,
289+ } }
290+ />
291+ < script
292+ type = "application/ld+json"
293+ dangerouslySetInnerHTML = { {
294+ __html : JSON . stringify ( getSiteNavigationSchema ( ) ) ,
295+ } }
296+ />
297+ < script
298+ type = "application/ld+json"
299+ dangerouslySetInnerHTML = { {
300+ __html : JSON . stringify ( getProfessionalServiceSchema ( ) ) ,
301+ } }
302+ />
303+ < script
304+ type = "application/ld+json"
305+ dangerouslySetInnerHTML = { {
306+ __html : JSON . stringify ( getServiceSchema ( ) ) ,
307+ } }
308+ />
309+ < script
310+ type = "application/ld+json"
311+ dangerouslySetInnerHTML = { {
312+ __html : JSON . stringify ( getProjectSchema ( ) ) ,
313+ } }
314+ />
274315 </ head >
275316 < body className = "flex flex-col min-h-screen antialiased" >
276317 < ErrorBoundary >
0 commit comments