diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bc661b1..48efcea 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,23 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; +import { Poppins } 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"], +const poppins = Poppins({ + subsets: ["latin"], + weight: ["400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "SocialXTrendify - Social Media Management Platform", description: "Manage, analyze, and grow your social media with SocialXTrendify. Real-time engagement tracking, trend forecasting, and smart scheduling for all platforms.", keywords: "social media management, content scheduling, analytics, trend forecasting, social media marketing", metadataBase: new URL("https://www.socialxtrendify.com"), - alternates: { - canonical: "https://www.socialxtrendify.com"}, - openGraph: { - title: "SocialXTrendify - Social Media Management Platform", description: "Amplify your social presence with data-driven strategies and trend forecasting.", url: "https://www.socialxtrendify.com", siteName: "SocialXTrendify", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148371410.jpg", alt: "SocialXTrendify Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "SocialXTrendify - Social Media Management Platform", description: "Manage all your social channels in one place with advanced analytics and AI-powered insights.", images: ["http://img.b2bpic.net/free-vector/dashboard-user-panel-template_23-2148371410.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "SocialXTrendify - Social Media Management Platform", description: "Amplify your social media presence with data-driven strategies, trend forecasting, and seamless content management."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}