From fb90182aea5014a65311c3e0af13ab0ec5d43016 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 08:36:23 +0000 Subject: [PATCH 1/5] Update src/app/book-consultation/contact/page.tsx --- src/app/book-consultation/contact/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/book-consultation/contact/page.tsx b/src/app/book-consultation/contact/page.tsx index d578fd3..167cf3c 100644 --- a/src/app/book-consultation/contact/page.tsx +++ b/src/app/book-consultation/contact/page.tsx @@ -255,7 +255,7 @@ export default function BookConsultationContactPage() { tagAnimation="slide-up" textboxLayout="default" useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/customer-standing-front-mirror-barbershop_23-2148181953.jpg" + imageSrc="http://img.b2bpic.net/free-photo/customer-standing-front-mirror-barbershop_23-2148181953.jpg?_wi=3" imageAlt="Architecture office workspace" mediaAnimation="slide-up" mediaPosition="right" -- 2.49.1 From 596bc39c303ab7ca63fee8ae483b911d19ca6fa8 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 08:36:23 +0000 Subject: [PATCH 2/5] Update src/app/book-consultation/details/page.tsx --- src/app/book-consultation/details/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/book-consultation/details/page.tsx b/src/app/book-consultation/details/page.tsx index a002eea..7e19a03 100644 --- a/src/app/book-consultation/details/page.tsx +++ b/src/app/book-consultation/details/page.tsx @@ -233,7 +233,7 @@ export default function BookConsultationDetailsPage() { tagAnimation="slide-up" textboxLayout="default" useInvertedBackground={false} - imageSrc="http://img.b2bpic.net/free-photo/customer-standing-front-mirror-barbershop_23-2148181953.jpg" + imageSrc="http://img.b2bpic.net/free-photo/customer-standing-front-mirror-barbershop_23-2148181953.jpg?_wi=2" imageAlt="Architecture office workspace" mediaAnimation="slide-up" mediaPosition="right" -- 2.49.1 From b79f1665efe16a31b4be4a89effe2a06640beae2 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 08:36:24 +0000 Subject: [PATCH 3/5] Update src/app/book-consultation/page.tsx --- src/app/book-consultation/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/book-consultation/page.tsx b/src/app/book-consultation/page.tsx index b3f4ff6..53faced 100644 --- a/src/app/book-consultation/page.tsx +++ b/src/app/book-consultation/page.tsx @@ -64,12 +64,12 @@ export default function BookConsultationPage() { mediaItems={[ { imageSrc: - "http://img.b2bpic.net/free-photo/room-interior-details-with-comfortable-armchair-gray-tapestry-wall-vertical-frame_166373-2415.jpg", + "http://img.b2bpic.net/free-photo/room-interior-details-with-comfortable-armchair-gray-tapestry-wall-vertical-frame_166373-2415.jpg?_wi=2", imageAlt: "Luxury modern interior design", }, { imageSrc: - "http://img.b2bpic.net/free-photo/abstract-brown-cubic-patterned_53876-95467.jpg", + "http://img.b2bpic.net/free-photo/abstract-brown-cubic-patterned_53876-95467.jpg?_wi=2", imageAlt: "Premium architectural detail", }, ]} -- 2.49.1 From 4fa23e4a64ffe7fb10a8baa909f5c31ab0d0b41a Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 19 Mar 2026 08:36:24 +0000 Subject: [PATCH 4/5] Update src/app/layout.tsx --- src/app/layout.tsx | 50 ++++++++++++++++++++++++++++++++++++++-------- 1 file changed, 42 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0077e1c..ae9e251 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 { 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: "ARCHIQ | AI-Powered Luxury Architecture & Interior Design", + description: "Luxury architecture and interior design with AI-powered 48-hour concepts. Fixed-price contracts, budget certainty, and guaranteed timelines. Serving hospitality, residential, and commercial projects in Hyderabad, Bangalore, Mumbai, Delhi.", + keywords: "luxury architecture, interior design, AI-powered design, hospitality design, residential architecture, commercial architecture, fixed-price contracts", + openGraph: { + title: "ARCHIQ - Luxury Design in Weeks, Not Months", + description: "AI-powered architecture and interiors with guaranteed budgets and 48-hour design concepts.", + type: "website", + siteName: "ARCHIQ", + images: [ + { + url: "http://img.b2bpic.net/free-photo/room-interior-details-with-comfortable-armchair-gray-tapestry-wall-vertical-frame_166373-2415.jpg", + alt: "ARCHIQ - Luxury Interior Design", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "ARCHIQ - Luxury Architecture & Interior Design", + description: "48-hour AI concepts. Fixed pricing. Zero overruns.", + images: ["http://img.b2bpic.net/free-photo/room-interior-details-with-comfortable-armchair-gray-tapestry-wall-vertical-frame_166373-2415.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -27,7 +59,9 @@ export default function RootLayout({ return ( - + {children}