diff --git a/src/app/blog/page.tsx b/src/app/blog/page.tsx index f6bd550..683fcfd 100644 --- a/src/app/blog/page.tsx +++ b/src/app/blog/page.tsx @@ -127,4 +127,4 @@ export default function BlogPage() { ); -} \ No newline at end of file +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index f34d0aa..6e01896 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -131,4 +131,4 @@ export default function ContactPage() { ); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 35f59ad..a090499 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,68 +1,22 @@ import type { Metadata } from "next"; -import { Montserrat } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const montserrat = Montserrat({ - variable: "--font-montserrat", - subsets: ["latin"], -}); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Patent & Intellectual Property Protection | PatentPro", - description: "Expert patent registration, trademark protection, and copyright services for businesses and innovators. Trusted IP consulting firm protecting your valuable assets.", - keywords: "patent registration, trademark protection, copyright, intellectual property, IP law, patent attorney, trademark attorney", - metadataBase: new URL("https://patentpro.com"), - alternates: { - canonical: "https://patentpro.com", - }, - openGraph: { - title: "Protect Your Intellectual Property | PatentPro", - description: "Expert patent, trademark, and copyright protection for innovators and businesses. Trusted by industry leaders.", - siteName: "PatentPro", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/focused-boss-analyzing-managers-report-reading-reviewing-papers-while-sitting-workplace-business-communication-concept_74855-11702.jpg", - alt: "Patent and IP Protection Services", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Protect Your Intellectual Property | PatentPro", - description: "Expert patent, trademark, and copyright protection for innovators and businesses.", - images: [ - "http://img.b2bpic.net/free-photo/focused-boss-analyzing-managers-report-reading-reviewing-papers-while-sitting-workplace-business-communication-concept_74855-11702.jpg", - ], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "PatentPro - Intellectual Property Protection", description: "Expert patent, trademark, and copyright protection for innovators and businesses"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}