From ecd92e5c55a3d1854398dd16b5c73d2dc097727e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 04:21:22 +0000 Subject: [PATCH 1/3] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++------------------------------------ 1 file changed, 10 insertions(+), 40 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7da251c..64852aa 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,53 +1,24 @@ import type { Metadata } from "next"; -import { DM_Sans } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Public_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const dmSans = DM_Sans({ - variable: "--font-dm-sans", subsets: ["latin"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const publicSans = Public_Sans({ + variable: "--font-public-sans", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Professional Event Planning & Organization | EventPro", description: "Expert event management services for corporate conferences, government advocacy events, brand activations, and more. Trusted by Fortune 500 companies.", keywords: "event planning, event organization, corporate events, conference management, government events, brand activation, event services", metadataBase: new URL("https://eventpro.com"), - alternates: { - canonical: "https://eventpro.com" - }, - openGraph: { - title: "Professional Event Planning & Organization | EventPro", description: "Expert event management services for corporate conferences, government advocacy events, brand activations, and more.", url: "https://eventpro.com", siteName: "EventPro", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/happy-entrepreneur-business-presentation-board-room_637285-9175.jpg", alt: "Professional event organization" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Professional Event Planning & Organization | EventPro", description: "Expert event management services for corporate events and activations.", images: ["http://img.b2bpic.net/free-photo/happy-entrepreneur-business-presentation-board-room_637285-9175.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "EventPro - Professional Event Organization", description: "Expert event planning and execution for corporate conferences, government advocacy events, and brand activations."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +