From 827571a5283700c51dee330a190c8a9bcb101e48 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 9 Mar 2026 16:35:49 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1413 +------------------------------------------- 1 file changed, 7 insertions(+), 1406 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 5f5a6fe..985cb50 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1418 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "@/styles/globals.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "JAM - The Future of Social Connection", description: "Experience the next generation social media platform where creators connect, create, and grow. Featuring dynamic feeds, short-form videos, messaging, and viral trends.", keywords: "social media, social platform, video sharing, creators, community, social network", openGraph: { - title: "JAM - Revolutionary Social Platform", description: "Join millions of creators on JAM - the futuristic social media platform with dynamic feeds, video sharing, and real-time connections.", url: "https://jamplatform.com", siteName: "JAM", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiJmkqLjFoHFargYVpcH0zZewK/a-bold-minimalistic-jam-logo-design-with-1773073548724-0306d549.png", alt: "JAM Social Platform Logo"}, - ], - type: "website"}, - twitter: { - card: "summary_large_image", title: "JAM - The Future of Social Connection", description: "Experience JAM, the revolutionary social platform designed for creators.", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AiJmkqLjFoHFargYVpcH0zZewK/a-futuristic-social-media-feed-interface-1773073549679-9eba7466.png"], - }, -}; + title: "JAM - The Next Generation of Social Connection", description: "Experience seamless blend of posts, videos, messaging, and trending content in one vibrant ecosystem."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -