Update src/app/layout.tsx

This commit is contained in:
2026-03-16 06:07:41 +00:00
parent 471e6d4c28
commit fb10377e9f

View File

@@ -1,24 +1,61 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Source_Sans_3 } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import { getVisualEditScript } from "@/utils/visual-edit-script";
import { Source_Sans_3 } from "next/font/google";
const halant = Halant({
variable: "--font-halant",
subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
export const metadata: Metadata = {
title: "Webild components 2",
description: "Generated by create next app",
};
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
});
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Rohan Pawar — UI/UX Designer & User Advocate",
description: "Premium portfolio of Rohan Pawar, UI/UX Designer. End-to-end product design, user research, and design systems for tech companies and design agencies.",
keywords: "UI Designer, UX Designer, Product Design, User Research, Design System, Portfolio, Bangalore Designer",
metadataBase: new URL("https://dzignr5-portfolio-enhanced.vercel.app"),
alternates: {
canonical: "https://dzignr5-portfolio-enhanced.vercel.app",
},
openGraph: {
title: "Rohan Pawar — UI/UX Designer & User Advocate",
description: "Complexity to Clarity. Premium product design, user research, and strategic design systems.",
url: "https://dzignr5-portfolio-enhanced.vercel.app",
siteName: "DZiGNR_5 Portfolio",
type: "website",
images: [
{
url: "http://img.b2bpic.net/free-photo/handsome-young-african-man-isolated_171337-9759.jpg",
alt: "Rohan Pawar UI/UX Designer Portfolio",
},
],
},
twitter: {
card: "summary_large_image",
title: "Rohan Pawar — UI/UX Designer",
description: "End-to-end product design & user advocacy. Solving complex problems with clarity.",
images: ["http://img.b2bpic.net/free-photo/handsome-young-african-man-isolated_171337-9759.jpg"],
},
robots: {
index: true,
follow: true,
},
};
export default function RootLayout({
children,
}: Readonly<{
@@ -27,7 +64,9 @@ export default function RootLayout({
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${sourceSans3.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -39,4 +78,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}