diff --git a/src/app/layout.tsx b/src/app/layout.tsx index da5b4f2..a0cd391 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,56 @@ 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 { getVisualEditScript } from "@/utils/visual-edit-script"; -import { Raleway } 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 raleway = Raleway({ variable: "--font-raleway", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Marketplace Card Design | E-Commerce UX Solutions", + description: "Professional marketplace product card design services. Increase conversions with conversion-optimized card designs for Amazon, Shopify, Etsy, and custom platforms.", + keywords: "marketplace card design, ecommerce ui design, product card design, conversion optimization, figma design, marketplace ux", + robots: { + index: true, + follow: true, + }, + openGraph: { + title: "Marketplace Card Design | E-Commerce UX Solutions", + description: "Professional marketplace product card design services. Increase conversions with conversion-optimized card designs.", + type: "website", + siteName: "CardDesigns", + images: [ + { + url: "http://img.b2bpic.net/free-vector/sale-instagram-stories-collection-terrazzo-hand-drawn-style_23-2148457737.jpg", + alt: "Marketplace card design showcase", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Marketplace Card Design | E-Commerce UX Solutions", + description: "Professional marketplace product card design services.", + images: ["http://img.b2bpic.net/free-vector/sale-instagram-stories-collection-terrazzo-hand-drawn-style_23-2148457737.jpg"], + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}