diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 1caef3a..f37691a 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -62,7 +62,7 @@ export default function AboutPage() { tag="Our Foundation" tagIcon={Home} tagAnimation="slide-up" - imageSrc="http://img.b2bpic.net/free-photo/woman-working-while-pregnant_23-2149248036.jpg" + imageSrc="http://img.b2bpic.net/free-photo/woman-working-while-pregnant_23-2149248036.jpg?_wi=2" imageAlt="Nest Interiors Design Team" mediaAnimation="slide-up" metricsAnimation="slide-up" @@ -160,7 +160,7 @@ export default function AboutPage() { tagAnimation="slide-up" background={{ variant: "radial-gradient" }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/hardworking-partners-working-office_329181-15270.jpg" + imageSrc="http://img.b2bpic.net/free-photo/hardworking-partners-working-office_329181-15270.jpg?_wi=2" imageAlt="Design consultation meeting" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 7c2c3f8..ff7dd6a 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -49,7 +49,7 @@ export default function ContactPage() { variant: "radial-gradient", }} useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/hardworking-partners-working-office_329181-15270.jpg" + imageSrc="http://img.b2bpic.net/free-photo/hardworking-partners-working-office_329181-15270.jpg?_wi=5" imageAlt="interior designer consultation meeting client discussion" mediaAnimation="slide-up" mediaPosition="right" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 282ff27..9f72a0d 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 { Nunito_Sans } 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 { Nunito_Sans } 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 nunitoSans = Nunito_Sans({ variable: "--font-nunito-sans", subsets: ["latin"], }); +export const metadata: Metadata = { + title: "Nest Interiors | Premium Interior Design Studio UAE", + description: "Transform your living and working spaces with Nest Interiors, a premium interior design studio in the UAE specializing in residential, commercial, and renovation design.", + keywords: "interior design UAE, premium interior design, home design Dubai, office interior design, commercial interior design, space renovation", + metadataBase: new URL("https://nestinteriors.ae"), + alternates: { + canonical: "https://nestinteriors.ae", + }, + openGraph: { + title: "Nest Interiors | Premium Interior Design Studio UAE", + description: "Transforming spaces, elevating lifestyles. Premium interior design for homes, offices, and commercial spaces in the UAE.", + url: "https://nestinteriors.ae", + siteName: "Nest Interiors", + images: [ + { + url: "http://img.b2bpic.net/free-photo/living-room-with-blue-sofa-lamp-with-gold-leaf-it_123827-23880.jpg", + alt: "Nest Interiors Premium Interior Design", + }, + ], + type: "website", + }, + twitter: { + card: "summary_large_image", + title: "Nest Interiors | Premium Interior Design Studio UAE", + description: "Transform your space with Nest Interiors. Premium interior design for residential and commercial projects.", + images: ["http://img.b2bpic.net/free-photo/living-room-with-blue-sofa-lamp-with-gold-leaf-it_123827-23880.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +64,9 @@ export default function RootLayout({ return ( - + {children}