Update src/app/layout.tsx

This commit is contained in:
2026-03-09 08:32:20 +00:00
parent e926d14730
commit 70933c2e9a

View File

@@ -1,17 +1,19 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/providers/themeProvider/ServiceWrapper";
import { Tag } from "@/components/tag/Tag";
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
const geist_mono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Portfolio", description: "Innovative design solutions"};
title: "Portfolio | Creative Design & UX Expertise", description: "Explore innovative design solutions and digital experiences crafted with strategic thinking and creative excellence."};
export default function RootLayout({
children,
@@ -20,12 +22,15 @@ export default function RootLayout({
}) {
return (
<html lang="en" suppressHydrationWarning>
<body className={`${geist.variable} ${geistMono.variable}`}>
{children}
<body className={`${geist.variable} ${geist_mono.variable}`}>
<ServiceWrapper>
<Tag />
{children}
</ServiceWrapper>
<script
src="https://cdn.jsdelivr.net/gh/lenis/lenis@latest/bundled/lenis.js"
async
/>
src="https://cdn.jsdelivr.net/npm/lenis@1.1.13/dist/lenis.min.js"
></script>
<script
dangerouslySetInnerHTML={{