From abecf6be54a84770a66408aba89bd612a7014bb1 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 10 Mar 2026 06:19:45 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 1444 +------------------------------------------- 1 file changed, 14 insertions(+), 1430 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 1551534..8cb952f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1441 +1,26 @@ -import type { Metadata } from "next"; -import { Halant } from "next/font/google"; -import { Inter } from "next/font/google"; -import { Nunito } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import type { Metadata } from 'next'; +import { Poppins } from 'next/font/google'; +import './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 nunito = Nunito({ - variable: "--font-nunito", - subsets: ["latin"], +const poppins = Poppins({ + subsets: ['latin'], + weight: ['400', '500', '600', '700', '800', '900'], + variable: '--font-poppins', }); export const metadata: Metadata = { - title: "ArtistsHub - Discover Artists Across Languages & Regions", - description: "Multi-login artist discovery platform with language customization. Explore talent across English, Hindi, Telugu, and more. Personalized recommendations for music lovers worldwide.", - keywords: "artist discovery, music platform, multi-language, regional artists, musician platform, talent discovery", - metadataBase: new URL("https://artistshub.example.com"), - alternates: { - canonical: "https://artistshub.example.com", - }, - openGraph: { - title: "ArtistsHub - Discover Your Next Favorite Artist", - description: "Connect with talented artists across multiple languages and regions with personalized curation.", - url: "https://artistshub.example.com", - siteName: "ArtistsHub", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/young-adults-having-fun-open-mic_23-2149501515.jpg", - alt: "ArtistsHub - Artist Discovery Platform", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "ArtistsHub - Discover Artists Across the Globe", - description: "Multi-language, personalized artist discovery platform for music enthusiasts.", - images: ["http://img.b2bpic.net/free-photo/young-adults-having-fun-open-mic_23-2149501515.jpg"], - }, - robots: { - index: true, - follow: true, - }, + title: 'ArtistsHub - Discover Talent Across the Globe', + description: 'Connect with your favorite artists across multiple languages and regions. Experience personalized artist discovery tailored to your preferences.', }; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - -