From 35d193c04203ec75cb797aaad660ddc0d4b037a9 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 18:09:05 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 68 ++++++++++++++++++---------------------------- 1 file changed, 27 insertions(+), 41 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index bdb26c5..8cb5f3d 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,44 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; +import { Inter_Tight } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import { ServiceWrapper } from "@/providers/serviceWrapper/ServiceWrapper"; +import { Tag } from "@/components/common/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 interTight = Inter_Tight({ + variable: "--font-inter-tight", subsets: ["latin"], + weight: ["100", "200", "300", "400", "500", "600", "700", "800", "900"], }); export const metadata: Metadata = { - title: "Social Media Management for Small Business | SocialGrow", description: "Expert social media management services for small businesses worldwide. Grow your online presence, build engaged communities, and drive sustainable business growth with SocialGrow.", keywords: "social media management, social media marketing, small business social media, content creation, community management, social media growth, digital marketing", metadataBase: new URL("https://socialgrow.com"), - alternates: { - canonical: "https://socialgrow.com" - }, - openGraph: { - title: "Social Media Management for Small Businesses | SocialGrow", description: "Transform your online presence with expert social media management. 500+ businesses trust SocialGrow to grow their social media and reach their goals.", url: "https://socialgrow.com", siteName: "SocialGrow", type: "website", images: [{ - url: "http://img.b2bpic.net/free-photo/tired-bookkeeper-imputing-datasets-online-computer-trying-keep-up-with-project-tasks-before-deadline-stressed-employee-working-overnight-office-nightshift_482257-70415.jpg", alt: "social media management dashboard professional" - }] - }, - twitter: { - card: "summary_large_image", title: "Social Media Management for Small Businesses | SocialGrow", description: "Expert social media management services. Grow your online presence with proven strategies.", images: ["http://img.b2bpic.net/free-photo/tired-bookkeeper-imputing-datasets-online-computer-trying-keep-up-with-project-tasks-before-deadline-stressed-employee-working-overnight-office-nightshift_482257-70415.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "SocialGrow - Social Media Management for Business Growth", description: "Expert social media management services for small businesses. We help you build engaged communities and drive sustainable growth through strategic social media management and content creation."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - + + + +