From ab563eefc8c69cbacb837fb71cef9207a5c6d7a5 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 05:20:25 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1419 -------------------------------------------- 1 file changed, 1419 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ea88247..e69de29 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1419 +0,0 @@ -import type { Metadata } from "next"; -import { Libre_Baskerville, 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: "PublishMind - Self-Publishing Platform for Independent Authors", description: "Publish your book globally with PublishMind. Professional formatting, global distribution, and royalty tracking. Start publishing free today.", keywords: "self-publishing, independent author, publish book, book distribution, ISBN, royalties, ebook", metadataBase: new URL("https://publishmind.com"), - alternates: { - canonical: "https://publishmind.com"}, - openGraph: { - title: "PublishMind - Publish Your Book Today", description: "Turn your manuscript into a published book in minutes. Join 12,000+ successful authors.", url: "https://publishmind.com", siteName: "PublishMind", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/business-leader-trader-searching-new-investment-solution_482257-116895.jpg", alt: "PublishMind Publishing Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "PublishMind - Self-Publishing Made Easy", description: "Publish globally, keep 70-90% royalties, no contracts. Start free.", images: ["http://img.b2bpic.net/free-photo/business-leader-trader-searching-new-investment-solution_482257-116895.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; - -export default function RootLayout({ - children, -}: Readonly<{ - children: React.ReactNode; -}>) { - return ( - - - - - {children} - -