From 18e36ebc2918cc565c6deeac53508214f8657151 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 20:51:25 +0000 Subject: [PATCH 1/6] Update src/app/about/page.tsx --- src/app/about/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" -- 2.49.1 From 861d7041eee1f56ab61526a5c02353ecedef41f6 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 20:51:26 +0000 Subject: [PATCH 2/6] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- 2.49.1 From 9908629e9af1fc5e1743f574e6ce6e2b69e26622 Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 14 Mar 2026 20:51:26 +0000 Subject: [PATCH 3/6] Update src/app/layout.tsx --- src/app/layout.tsx | 55 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 47 insertions(+), 8 deletions(-) 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}