diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index bc9e28a..ec7496a 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -65,37 +65,37 @@ export default function AboutPage() { id: "doors", title: "Interior & Exterior Doors", description: "Modern, durable, and beautifully designed — our best-selling category.", - imageSrc: "http://img.b2bpic.net/free-photo/modern-styled-entryway_23-2150695815.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/modern-styled-entryway_23-2150695815.jpg?_wi=1", }, { id: "vanities", title: "Bathroom Vanities & Cabinets", description: "Elegant pieces with high-quality finishes, soft-close hardware, and integrated sinks.", - imageSrc: "http://img.b2bpic.net/free-photo/arrangement-with-mirror-perfume-wooden-table_23-2148366325.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/arrangement-with-mirror-perfume-wooden-table_23-2148366325.jpg?_wi=1", }, { id: "sinks", title: "Sinks & Fixtures", description: "Premium materials, sleek designs, and long-lasting durability.", - imageSrc: "http://img.b2bpic.net/free-photo/pro-kitchen-sprayer-sleek-sink-stone-backsplash_169016-69285.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/pro-kitchen-sprayer-sleek-sink-stone-backsplash_169016-69285.jpg?_wi=1", }, { id: "flooring", title: "Flooring", description: "Wood, tile, laminate, and more — stylish options for every room.", - imageSrc: "http://img.b2bpic.net/free-photo/empty-chamber-with-textured-walls_1194-6550.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/empty-chamber-with-textured-walls_1194-6550.jpg?_wi=1", }, { id: "hardware", title: "Hardware & Accessories", description: "Handles, hinges, knobs, rails, and finishing touches.", - imageSrc: "http://img.b2bpic.net/free-photo/crop-hand-pulling-library-drawer_23-2147845895.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/crop-hand-pulling-library-drawer_23-2147845895.jpg?_wi=1", }, { id: "decor", title: "Home Décor", description: "Mirrors, lighting, wall art, and modern accents.", - imageSrc: "http://img.b2bpic.net/free-photo/interior-designer-working-decoration-project_23-2150334453.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/interior-designer-working-decoration-project_23-2150334453.jpg?_wi=1", }, ]} gridVariant="bento-grid" @@ -120,19 +120,19 @@ export default function AboutPage() { id: "consultation", title: "Showroom Consultations", description: "Expert guidance from our knowledgeable team to help you select the perfect products for your project.", - imageSrc: "http://img.b2bpic.net/free-photo/professional-businesspeople-looking-schedule-diary-workplace_23-2147880505.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/professional-businesspeople-looking-schedule-diary-workplace_23-2147880505.jpg?_wi=1", }, { id: "installation", title: "Professional Installation", description: "We handle vanities, doors, cabinets, and more. Fast, reliable installation with attention to detail.", - imageSrc: "http://img.b2bpic.net/free-photo/young-male-electrician-doing-some-repairs-laundry-room-looking-washing-machine_662251-2755.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/young-male-electrician-doing-some-repairs-laundry-room-looking-washing-machine_662251-2755.jpg?_wi=1", }, { id: "delivery", title: "Delivery & Pickup", description: "In-store pickup available, or we can deliver directly to your project site.", - imageSrc: "http://img.b2bpic.net/free-photo/delivery-man_1368-6386.jpg", + imageSrc: "http://img.b2bpic.net/free-photo/delivery-man_1368-6386.jpg?_wi=1", }, ]} gridVariant="three-columns-all-equal-width" diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 82b392d..76a9673 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,18 +1,22 @@ import type { Metadata } from "next"; import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; +import { Roboto } 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 { Roboto } 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 roboto = Roboto({ variable: "--font-roboto", @@ -20,6 +24,41 @@ const roboto = Roboto({ weight: ["100", "300", "400", "500", "700", "900"], }); +export const metadata: Metadata = { + title: "Mi.Elite Home - Luxury Home Remodeling in Miami", + description: "Premium doors, vanities, flooring & home décor with exceptional service. Visit our Miami showroom or shop online today.", + keywords: "home remodeling, interior doors, vanities, flooring, Miami showroom, luxury home products", + metadataBase: new URL("https://mielitehome.com"), + alternates: { + canonical: "https://mielitehome.com", + }, + openGraph: { + title: "Mi.Elite Home - Luxury Home Remodeling", + description: "Discover premium home remodeling products with exceptional service. Luxury without the price tag.", + url: "https://mielitehome.com", + siteName: "Mi.Elite Home", + type: "website", + images: [ + { + url: "http://img.b2bpic.net/free-photo/top-view-yummy-sweet-bagels-sugar-powdered-white-desk_140725-81098.jpg", + alt: "Mi.Elite Home - Luxury Home Remodeling", + }, + ], + }, + twitter: { + card: "summary_large_image", + title: "Mi.Elite Home - Luxury Home Remodeling", + description: "Premium home products & professional service in Miami", + images: [ + "http://img.b2bpic.net/free-photo/top-view-yummy-sweet-bagels-sugar-powdered-white-desk_140725-81098.jpg", + ], + }, + robots: { + index: true, + follow: true, + }, +}; + export default function RootLayout({ children, }: Readonly<{ @@ -28,7 +67,9 @@ export default function RootLayout({ return ( - + {children}