From 1fe331a5558c64c996f9c9e3c720e308a6af8a81 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 18:11:59 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 43 +++++-------------------------------------- 1 file changed, 5 insertions(+), 38 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 59e9414..49e8e58 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,22 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Trident - Business Phone System in 2 Minutes", description: "Get a professional business phone number in 2 minutes. Trident's cloud-based phone system works on any device with crystal-clear quality and enterprise security.", keywords: "business phone system, VoIP, mobile phone app, business communication, cloud phone", metadataBase: new URL("https://trident.example.com"), - alternates: { - canonical: "https://trident.example.com" - }, - openGraph: { - title: "Trident - Business Phone System", description: "Professional business phone number in 2 minutes. No setup fees, no contracts.", url: "https://trident.example.com", siteName: "Trident", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5N3NemkYpE5G8YVZjmvliYLk/a-sleek-modern-business-phone-system-mob-1772559399004-38741aeb.png", alt: "Trident business phone system dashboard" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Trident - Business Phone System", description: "Get a business phone number in 2 minutes with Trident", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AP5N3NemkYpE5G8YVZjmvliYLk/a-sleek-modern-business-phone-system-mob-1772559399004-38741aeb.png"] - }, - robots: { - index: true, - follow: true - } -}; + title: "Trident - Business Phone System", description: "Get a professional business phone number in 2 minutes. Enterprise-grade phone system for modern businesses."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}