Update src/app/layout.tsx

This commit is contained in:
2026-03-03 14:36:17 +00:00
parent b74ede893d
commit e55a6d9b93

View File

@@ -1,50 +1,39 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Manrope } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const manrope = Manrope({
variable: "--font-manrope", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Creative Portfolio | UI/UX Design & Development", description: "Explore stunning digital projects and discover how strategic design drives business growth. High-quality portfolio showcasing design excellence.", keywords: "portfolio, ui design, ux design, web development, branding, case studies", metadataBase: new URL("https://yourportfolio.com"),
title: "Garvit Pandia - Software Developer Portfolio", description: "Garvit Pandia's professional portfolio showcasing skills in C++, Java, Python, Web Development, and Data Analysis. Explore projects, certifications, and achievements from Lovely Professional University.", keywords: "Garvit Pandia, portfolio, software developer, C++, Java, Python, web development, data analysis, LPU, Lovely Professional University", metadataBase: new URL("https://garvitpandia.com"),
alternates: {
canonical: "https://yourportfolio.com"},
canonical: "https://garvitpandia.com"
},
openGraph: {
title: "Creative Portfolio | UI/UX Design & Development", description: "Explore stunning digital projects and discover how strategic design drives business growth.", url: "https://yourportfolio.com", siteName: "Portfolio", type: "website", images: [
title: "Garvit Pandia - Software Developer Portfolio", description: "Garvit Pandia's professional portfolio showcasing skills in C++, Java, Python, Web Development, and Data Analysis.", url: "https://garvitpandia.com", siteName: "Garvit Pandia Portfolio", type: "website", images: [
{
url: "http://img.b2bpic.net/free-photo/messy-office-workplace-workplace-workspace-concept_185193-108711.jpg", alt: "Portfolio showcase"},
],
url: "http://img.b2bpic.net/free-photo/messy-office-workplace-workplace-workspace-concept_185193-108711.jpg", alt: "Portfolio showcase"
}
]
},
twitter: {
card: "summary_large_image", title: "Creative Portfolio | UI/UX Design & Development", description: "Explore stunning digital projects and discover how strategic design drives business growth.", images: ["http://img.b2bpic.net/free-photo/messy-office-workplace-workplace-workspace-concept_185193-108711.jpg"],
},
card: "summary_large_image", title: "Garvit Pandia - Software Developer Portfolio", description: "Garvit Pandia's professional portfolio showcasing skills in C++, Java, Python, Web Development, and Data Analysis.", images: ["http://img.b2bpic.net/free-photo/messy-office-workplace-workplace-workspace-concept_185193-108711.jpg"]
}
};
export default function RootLayout({
children,
children
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${manrope.variable} antialiased`}
>
<body className={`${inter.variable} antialiased`}>
<Tag />
{children}