From ba9d863be5327cf5b9629fe677ea472e6da2ab02 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 16:42:02 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++++++++++++++++++++++++++++++++++++---- 1 file changed, 39 insertions(+), 4 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 2741840..795f34d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -12,13 +12,28 @@ import { Public_Sans } from "next/font/google"; export const metadata: Metadata = { title: 'Sharanya Sasmal — UI/UX & Graphic Designer', description: 'Award-winning UI/UX and graphic designer crafting compelling digital experiences. Specializing in design systems, brand identity, and motion design.', + manifest: '/manifest.json', + viewport: 'width=device-width, initial-scale=1, maximum-scale=5, viewport-fit=cover', + appleWebApp: { + capable: true, + statusBarStyle: 'default', + title: 'Sharanya Sasmal Portfolio' + }, + formatDetection: { + telephone: false + } }; const publicSans = Public_Sans({ variable: "--font-public-sans", subsets: ["latin"], + display: 'swap', + fallback: ['system-ui', '-apple-system', 'sans-serif'] }); + const inter = Inter({ variable: "--font-inter", subsets: ["latin"], + display: 'swap', + fallback: ['system-ui', '-apple-system', 'sans-serif'] }); export default function RootLayout({ @@ -28,15 +43,35 @@ export default function RootLayout({ }>) { return ( + + + + + + + {children}