diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 269cb84..10e1268 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1434 +1,30 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } 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 mulish = Mulish({ - variable: "--font-mulish", - subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Yume - Premium Digital Art Marketplace", - description: "Discover thousands of original digital art. Artists earn 85% commission. Buyers support independent creators. Premium marketplace for digital illustrations.", - keywords: "digital art marketplace, buy sell digital art, digital illustrations, art platform, independent artists, digital drawings, art commission", - openGraph: { - title: "Yume - Where Dreams Become Digital Art", - description: "Premium digital art marketplace connecting artists and collectors worldwide.", - siteName: "Yume", - type: "website", - images: [ - { - url: "http://img.b2bpic.net/free-photo/square-white-surfaces-attached-wall-room_181624-19668.jpg", - alt: "Yume digital art marketplace", - }, - ], - }, - twitter: { - card: "summary_large_image", - title: "Yume - Premium Digital Art Marketplace", - description: "Discover original digital art from global artists. Fair prices, 85% artist commission.", - images: ["http://img.b2bpic.net/free-photo/square-white-surfaces-attached-wall-room_181624-19668.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Yume - Premium Digital Art Marketplace", description: "Discover and sell original digital art on Yume, the premium marketplace for digital illustrations built by artists, for creators."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - + + {children} - +