From 3918096f7ae87c5e1f46b19ae92f65ef828cbb04 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 11 Mar 2026 12:23:01 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 56 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 48 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..30a8b39 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,62 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Source_Sans_3 } from "next/font/google"; import "./globals.css"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Source_Sans_3 } from "next/font/google"; +const halant = Halant({ + variable: "--font-halant", + subsets: ["latin"], + weight: ["300", "400", "500", "600", "700"], +}); - -export const metadata: Metadata = { - title: "Webild components 2", - description: "Generated by create next app", -}; +const inter = Inter({ + variable: "--font-inter", + subsets: ["latin"], +}); const sourceSans3 = Source_Sans_3({ variable: "--font-source-sans-3", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Family Square - Connect & Share with Your Family", + description: "Family Square is a modern platform where families connect, organize events, share memories, and stay close together. Join thousands of families already using Family Square.", + keywords: "family platform, family connection, family messaging, event planning, photo sharing, family app", + metadataBase: new URL("https://familysquare.com"), + alternates: { + canonical: "https://familysquare.com", + }, + openGraph: { + title: "Family Square - Connect & Share with Your Family", + description: "Bring your family closer together with messaging, event planning, photo sharing, and more.", + type: "website", + siteName: "Family Square", + images: [ + { + url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnbxEPiQ6fsuB7Y8ohmufnVsIJ/uploaded-1773231692717-0wdcmtlb.png", + alt: "Family Square Logo", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Family Square - Connect & Share with Your Family", + description: "Bring your family closer together with messaging, event planning, and photo sharing.", + images: [ + "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AnbxEPiQ6fsuB7Y8ohmufnVsIJ/uploaded-1773231692717-0wdcmtlb.png", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +65,9 @@ export default function RootLayout({ return ( - + {children}