From e904e5aae435f3cd2af717649c0cf93788c8135f Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 23:26:40 +0000 Subject: [PATCH 1/4] Update src/app/about/page.tsx --- src/app/about/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 3c8eba7..7524029 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -189,7 +189,7 @@ export default function AboutPage() { company: "Hassan Trading Co.", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1569.jpg", + "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1569.jpg?_wi=2", }, { id: "2", @@ -198,7 +198,7 @@ export default function AboutPage() { company: "Cairo Design Studio", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/portrait-bearded-middle-age-male-dressed-woolen-suit-isolated-grey-vignette-background_613910-26.jpg", + "http://img.b2bpic.net/free-photo/portrait-bearded-middle-age-male-dressed-woolen-suit-isolated-grey-vignette-background_613910-26.jpg?_wi=2", }, { id: "3", @@ -207,7 +207,7 @@ export default function AboutPage() { company: "Style House Alexandria", rating: 5, imageSrc: - "http://img.b2bpic.net/free-photo/content-businessman-talking-by-smartphone-looking-away_74855-3250.jpg", + "http://img.b2bpic.net/free-photo/content-businessman-talking-by-smartphone-looking-away_74855-3250.jpg?_wi=2", }, ]} /> -- 2.49.1 From c7b6ff3ccc45067d4049d9c5daf0b689d4a58944 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 20 Mar 2026 23:26:40 +0000 Subject: [PATCH 2/4] Update src/app/layout.tsx --- src/app/layout.tsx | 59 ++++++++++++++++++++++++++++++++++++---------- 1 file changed, 47 insertions(+), 12 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0f7096a..3f3529e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,27 +1,60 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { DM_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 { DM_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 dmSans = DM_Sans({ variable: "--font-dm-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); + +export const metadata: Metadata = { + title: "TiE HOUSE - Premium Men's Fashion in Alexandria, Egypt", + description: "Discover luxury men's fashion at TiE HOUSE. Premium suits, shirts, and accessories with transparent pricing, easy returns, and exceptional customer service.", + keywords: "men's fashion Egypt, luxury suits Alexandria, premium menswear, formal wear, ties, shirts, professional clothing", + metadataBase: new URL("https://tiehouse.eg"), + alternates: { + canonical: "https://tiehouse.eg", + }, + openGraph: { + title: "TiE HOUSE - Redefining Men's Elegance", + description: "Where Style Meets Confidence. Premium fabrics, transparent pricing, world-class service.", + url: "https://tiehouse.eg", + siteName: "TiE HOUSE", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/portrait-handsome-confident-stylish-hipster-lambersexual-modelmodern-man-dressed-elegant-white-suit-fashion-male-posing-street-background-europe-city-sunset-sunglasses_158538-22422.jpg", + alt: "TiE HOUSE Premium Men's Fashion", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "TiE HOUSE - Premium Men's Fashion", + description: "Discover luxury suits, shirts, and accessories. Transparent pricing. Easy returns. Expert service.", + images: ["http://img.b2bpic.net/free-photo/portrait-handsome-confident-stylish-hipster-lambersexual-modelmodern-man-dressed-elegant-white-suit-fashion-male-posing-street-background-europe-city-sunset-sunglasses_158538-22422.jpg"], + }, + robots: { + index: true, + follow: true, + }, +}; export default function RootLayout({ children, @@ -31,7 +64,9 @@ export default function RootLayout({ return ( - + {children}