From 326067d349b3393240b4d5a21ca607a08e550e2b Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 18:03:50 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1442 -------------------------------------------- 1 file changed, 1442 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 8cdfef4..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1442 +0,0 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } 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 figtree = Figtree({ - variable: "--font-figtree", - subsets: ["latin"], -}); - -export const metadata: Metadata = { - title: "A.Rizvi | Creative Portfolio & Dashboard", - description: "Explore A.Rizvi's creative portfolio showcasing innovative work, manage posts through an intuitive dashboard, and connect with a passionate professional.", - keywords: "portfolio, creative, dashboard, designer, work showcase, collaboration", - metadataBase: new URL("https://arizvi.com"), - alternates: { - canonical: "https://arizvi.com", - }, - openGraph: { - title: "A.Rizvi | Creative Portfolio & Dashboard", - description: "Explore innovative creative work and connect with A.Rizvi through an intuitive portfolio platform.", - url: "https://arizvi.com", - siteName: "A.Rizvi Portfolio", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/elegant-cozy-office-lifestyle_23-2149636247.jpg", - alt: "A.Rizvi Portfolio", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "A.Rizvi | Creative Portfolio & Dashboard", - description: "Explore innovative creative work and connect with A.Rizvi.", - images: ["http://img.b2bpic.net/free-photo/elegant-cozy-office-lifestyle_23-2149636247.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -