diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 2fb8bec..8f68f23 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -97,7 +97,7 @@ export default function AboutPage() { imageSrc: "http://img.b2bpic.net/free-photo/school-scene-with-queer-teens_23-2150379373.jpg", }, phoneTwo: { - imageSrc: "http://img.b2bpic.net/free-photo/view-toilet-bag-products_23-2149879474.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/view-toilet-bag-products_23-2149879474.jpg?_wi=3", }, }, ]} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..9752462 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 { Montserrat } 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 { Montserrat } 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 montserrat = Montserrat({ variable: "--font-montserrat", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "NIVARO - Premium Luxury Streetwear | Born for the Bold", + description: "Discover NIVARO's exclusive collection of premium luxury streetwear. Bold designs, premium quality, timeless pieces for the unapologetic.", + keywords: "luxury streetwear, premium clothing, exclusive fashion, bold design, luxury apparel, streetwear brand", + metadataBase: new URL("https://nivaro.com"), + alternates: { + canonical: "https://nivaro.com", + }, + openGraph: { + title: "NIVARO - Born for the Bold", + description: "Premium luxury streetwear designed for those who dare to stand out.", + url: "https://nivaro.com", + siteName: "NIVARO", + type: "website", + images: [ + { + url: "https://nivaro.com/og-image.jpg", + alt: "NIVARO luxury streetwear collection", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "NIVARO - Born for the Bold", + description: "Premium luxury streetwear for the unapologetic.", + images: ["https://nivaro.com/twitter-image.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}