Merge version_1 into main #1
@@ -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",
|
||||
},
|
||||
]}
|
||||
/>
|
||||
|
||||
@@ -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 (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${dmSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${halant.variable} ${inter.variable} ${dmSans.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +78,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -104,7 +104,7 @@ export default function HomePage() {
|
||||
id: "suit-classic-black",
|
||||
name: "Classic Black Suit",
|
||||
price: "2,499 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-businessman-black-shirt-black-suit_158595-4782.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-businessman-black-shirt-black-suit_158595-4782.jpg?_wi=1",
|
||||
imageAlt: "Classic black tailored suit",
|
||||
initialQuantity: 1,
|
||||
},
|
||||
@@ -112,7 +112,7 @@ export default function HomePage() {
|
||||
id: "suit-navy-premium",
|
||||
name: "Premium Navy Suit",
|
||||
price: "2,799 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-people-walking-together_53876-22943.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-people-walking-together_53876-22943.jpg?_wi=1",
|
||||
imageAlt: "Navy blue premium suit",
|
||||
initialQuantity: 1,
|
||||
},
|
||||
@@ -120,7 +120,7 @@ export default function HomePage() {
|
||||
id: "shirt-white-dress",
|
||||
name: "White Dress Shirt",
|
||||
price: "599 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/basic-white-shirt-men-s-fashion-apparel-city-view-shoot_53876-105525.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/basic-white-shirt-men-s-fashion-apparel-city-view-shoot_53876-105525.jpg?_wi=1",
|
||||
imageAlt: "Premium white dress shirt",
|
||||
initialQuantity: 1,
|
||||
},
|
||||
@@ -128,7 +128,7 @@ export default function HomePage() {
|
||||
id: "shirt-blue-formal",
|
||||
name: "Blue Formal Shirt",
|
||||
price: "649 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280747.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280747.jpg?_wi=1",
|
||||
imageAlt: "Elegant blue formal shirt",
|
||||
initialQuantity: 1,
|
||||
},
|
||||
@@ -136,7 +136,7 @@ export default function HomePage() {
|
||||
id: "tie-silk-burgundy",
|
||||
name: "Silk Burgundy Tie",
|
||||
price: "349 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/groom-s-accessories-black-bow-tie-shoes-tuxedo-wedding-details_8353-10976.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/groom-s-accessories-black-bow-tie-shoes-tuxedo-wedding-details_8353-10976.jpg?_wi=1",
|
||||
imageAlt: "Premium silk burgundy tie",
|
||||
initialQuantity: 1,
|
||||
},
|
||||
@@ -144,7 +144,7 @@ export default function HomePage() {
|
||||
id: "casual-smart-shirt",
|
||||
name: "Smart Casual Shirt",
|
||||
price: "499 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-confident-stylish-hipster-lambersexual-modelsexy-modern-man-dressed-white-shirt-trousers-fashion-male-posing-street-background-europe-city-sunset-sunglasses_158538-22372.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-confident-stylish-hipster-lambersexual-modelsexy-modern-man-dressed-white-shirt-trousers-fashion-male-posing-street-background-europe-city-sunset-sunglasses_158538-22372.jpg?_wi=1",
|
||||
imageAlt: "Men's smart casual shirt",
|
||||
initialQuantity: 1,
|
||||
},
|
||||
@@ -237,7 +237,7 @@ export default function HomePage() {
|
||||
role: "CEO",
|
||||
company: "Hassan Trading Co.",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1569.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1569.jpg?_wi=1",
|
||||
imageAlt: "Ahmed Hassan",
|
||||
},
|
||||
{
|
||||
@@ -246,7 +246,7 @@ export default function HomePage() {
|
||||
role: "Architect",
|
||||
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",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-bearded-middle-age-male-dressed-woolen-suit-isolated-grey-vignette-background_613910-26.jpg?_wi=1",
|
||||
imageAlt: "Mohamed Karim",
|
||||
},
|
||||
{
|
||||
@@ -255,7 +255,7 @@ export default function HomePage() {
|
||||
role: "Fashion Designer",
|
||||
company: "Style House Alexandria",
|
||||
rating: 5,
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/content-businessman-talking-by-smartphone-looking-away_74855-3250.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/content-businessman-talking-by-smartphone-looking-away_74855-3250.jpg?_wi=1",
|
||||
imageAlt: "Khaled Ibrahim",
|
||||
},
|
||||
{
|
||||
|
||||
@@ -56,7 +56,7 @@ export default function ShopPage() {
|
||||
id: "suit-classic-black",
|
||||
name: "Classic Black Suit",
|
||||
price: "2,499 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-businessman-black-shirt-black-suit_158595-4782.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/young-handsome-businessman-black-shirt-black-suit_158595-4782.jpg?_wi=2",
|
||||
imageAlt: "Classic black tailored suit",
|
||||
initialQuantity: 1,
|
||||
},
|
||||
@@ -64,7 +64,7 @@ export default function ShopPage() {
|
||||
id: "suit-navy-premium",
|
||||
name: "Premium Navy Suit",
|
||||
price: "2,799 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-people-walking-together_53876-22943.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/business-people-walking-together_53876-22943.jpg?_wi=2",
|
||||
imageAlt: "Navy blue premium suit",
|
||||
initialQuantity: 1,
|
||||
},
|
||||
@@ -72,7 +72,7 @@ export default function ShopPage() {
|
||||
id: "shirt-white-dress",
|
||||
name: "White Dress Shirt",
|
||||
price: "599 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/basic-white-shirt-men-s-fashion-apparel-city-view-shoot_53876-105525.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/basic-white-shirt-men-s-fashion-apparel-city-view-shoot_53876-105525.jpg?_wi=2",
|
||||
imageAlt: "Premium white dress shirt",
|
||||
initialQuantity: 1,
|
||||
},
|
||||
@@ -80,7 +80,7 @@ export default function ShopPage() {
|
||||
id: "shirt-blue-formal",
|
||||
name: "Blue Formal Shirt",
|
||||
price: "649 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280747.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/beautiful-business-woman-portrait_23-2149280747.jpg?_wi=2",
|
||||
imageAlt: "Elegant blue formal shirt",
|
||||
initialQuantity: 1,
|
||||
},
|
||||
@@ -88,7 +88,7 @@ export default function ShopPage() {
|
||||
id: "tie-silk-burgundy",
|
||||
name: "Silk Burgundy Tie",
|
||||
price: "349 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/groom-s-accessories-black-bow-tie-shoes-tuxedo-wedding-details_8353-10976.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/groom-s-accessories-black-bow-tie-shoes-tuxedo-wedding-details_8353-10976.jpg?_wi=2",
|
||||
imageAlt: "Premium silk burgundy tie",
|
||||
initialQuantity: 1,
|
||||
},
|
||||
@@ -96,7 +96,7 @@ export default function ShopPage() {
|
||||
id: "casual-smart-shirt",
|
||||
name: "Smart Casual Shirt",
|
||||
price: "499 EGP",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-confident-stylish-hipster-lambersexual-modelsexy-modern-man-dressed-white-shirt-trousers-fashion-male-posing-street-background-europe-city-sunset-sunglasses_158538-22372.jpg",
|
||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-handsome-confident-stylish-hipster-lambersexual-modelsexy-modern-man-dressed-white-shirt-trousers-fashion-male-posing-street-background-europe-city-sunset-sunglasses_158538-22372.jpg?_wi=2",
|
||||
imageAlt: "Men's smart casual shirt",
|
||||
initialQuantity: 1,
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user