diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a088e29..485b7be 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,61 @@ 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: "Aura Hub Finds - Trusted Beauty Reviews & Shopping Guides", + description: "Discover the best skincare, makeup, and beauty products through honest reviews, expert guides, and curated shopping recommendations. Trusted by 10,000+ beauty enthusiasts.", + keywords: "beauty product reviews, skincare guide, makeup tutorials, lip balm recommendations, affordable beauty products, beauty shopping guide", + metadataBase: new URL("https://aurahubfinds.com"), + alternates: { + canonical: "https://aurahubfinds.com", + }, + openGraph: { + title: "Aura Hub Finds - Beauty Discovery Hub", + description: "Find trusted product reviews, expert beauty guides, and curated shopping recommendations from beauty enthusiasts.", + url: "https://aurahubfinds.com", + siteName: "Aura Hub Finds", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/portrait-ayoung-beautiful-woman_641386-368.jpg", + alt: "Aura Hub Finds - Discover Your Beauty Essentials", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Aura Hub Finds - Trusted Beauty Reviews", + description: "Honest product reviews, expert guides, and curated beauty finds.", + images: ["http://img.b2bpic.net/free-photo/portrait-ayoung-beautiful-woman_641386-368.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}