Merge version_1 into main #1

Merged
bender merged 6 commits from version_1 into main 2026-03-17 19:36:42 +00:00
6 changed files with 87 additions and 46 deletions

View File

@@ -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"

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body className={`${roboto.variable} antialiased`}>
<body
className={`${halant.variable} ${inter.variable} ${roboto.variable} antialiased`}
>
<Tag />
{children}
<script
@@ -40,4 +81,4 @@ export default function RootLayout({
</ServiceWrapper>
</html>
);
}
}

View File

@@ -135,7 +135,7 @@ export default function HomePage() {
name: "Modern Interior Doors",
price: "From $299",
variant: "Solid Wood & Composite",
imageSrc: "http://img.b2bpic.net/free-photo/home-entranceway-with-furniture-modern-decor_23-2150831862.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/home-entranceway-with-furniture-modern-decor_23-2150831862.jpg?_wi=1",
imageAlt: "Premium interior doors collection",
},
{
@@ -143,7 +143,7 @@ export default function HomePage() {
name: "Designer Vanities",
price: "From $599",
variant: "Integrated Sinks Available",
imageSrc: "http://img.b2bpic.net/free-photo/tidy-bathroom-with-shiny-tiles_1203-1501.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/tidy-bathroom-with-shiny-tiles_1203-1501.jpg?_wi=1",
imageAlt: "Elegant bathroom vanities",
},
{
@@ -151,7 +151,7 @@ export default function HomePage() {
name: "Premium Flooring",
price: "From $399",
variant: "Wood, Tile & Laminate",
imageSrc: "http://img.b2bpic.net/free-photo/modern-empty-room_23-2150528549.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/modern-empty-room_23-2150528549.jpg?_wi=1",
imageAlt: "High-end flooring options",
},
{
@@ -159,7 +159,7 @@ export default function HomePage() {
name: "High-End Mirrors",
price: "From $199",
variant: "Modern & Luxury Styles",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-going-art-gallery_23-2149709085.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-going-art-gallery_23-2149709085.jpg?_wi=1",
imageAlt: "Designer mirror collection",
},
]}
@@ -186,7 +186,7 @@ export default function HomePage() {
name: "Maria Rodriguez",
role: "Homeowner",
testimonial: "Amazing store… great prices and variety. Awesome customer service. I'll definitely come back for my next project!",
imageSrc: "http://img.b2bpic.net/free-photo/sonrisa-belleza-gente-alegria-chicas_1301-1166.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/sonrisa-belleza-gente-alegria-chicas_1301-1166.jpg?_wi=1",
imageAlt: "Maria Rodriguez",
},
{
@@ -194,7 +194,7 @@ export default function HomePage() {
name: "John Martinez",
role: "Contractor",
testimonial: "I'm absolutely delighted… excellent quality doors. Highly recommend to anyone looking for premium doors and fixtures.",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1622.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1622.jpg?_wi=1",
imageAlt: "John Martinez",
},
{
@@ -202,7 +202,7 @@ export default function HomePage() {
name: "Sofia Gonzalez",
role: "Interior Designer",
testimonial: "They helped me choose exactly what I needed. Everything looks beautiful and arrived on time. Professional team!",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-albino-woman-with-flowers_23-2150520246.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-albino-woman-with-flowers_23-2150520246.jpg?_wi=1",
imageAlt: "Sofia Gonzalez",
},
{
@@ -210,7 +210,7 @@ export default function HomePage() {
name: "Carlos Mendez",
role: "Property Developer",
testimonial: "Spectacular variety. Highly recommended. Their competitive pricing and quality products make them my go-to for all projects.",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-hipster-male-dressed-suit-sunglasses-dark-grey-background_613910-12487.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-hipster-male-dressed-suit-sunglasses-dark-grey-background_613910-12487.jpg?_wi=1",
imageAlt: "Carlos Mendez",
},
{
@@ -218,7 +218,7 @@ export default function HomePage() {
name: "Isabella Santos",
role: "Homeowner",
testimonial: "I purchased a sink with cabinet and got it installed. It looks beautiful. Great prices, excellent service overall.",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-caucasian-woman-office-looking-camera_23-2148187145.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-caucasian-woman-office-looking-camera_23-2148187145.jpg?_wi=1",
imageAlt: "Isabella Santos",
},
{
@@ -226,7 +226,7 @@ export default function HomePage() {
name: "Diego Rossi",
role: "Real Estate Agent",
testimonial: "A really good experience from start to finish. Their products add real value to homes. Reliable and professional.",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-business-man-city_23-2148479568.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-business-man-city_23-2148479568.jpg?_wi=1",
imageAlt: "Diego Rossi",
},
]}

View File

@@ -93,7 +93,7 @@ export default function ProductsPage() {
name: "Modern Interior Doors",
price: "From $299",
variant: "Solid Wood & Composite",
imageSrc: "http://img.b2bpic.net/free-photo/home-entranceway-with-furniture-modern-decor_23-2150831862.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/home-entranceway-with-furniture-modern-decor_23-2150831862.jpg?_wi=2",
imageAlt: "Premium interior doors collection",
},
{
@@ -101,7 +101,7 @@ export default function ProductsPage() {
name: "Designer Vanities",
price: "From $599",
variant: "Integrated Sinks Available",
imageSrc: "http://img.b2bpic.net/free-photo/tidy-bathroom-with-shiny-tiles_1203-1501.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/tidy-bathroom-with-shiny-tiles_1203-1501.jpg?_wi=2",
imageAlt: "Elegant bathroom vanities",
},
{
@@ -109,7 +109,7 @@ export default function ProductsPage() {
name: "Premium Flooring",
price: "From $399",
variant: "Wood, Tile & Laminate",
imageSrc: "http://img.b2bpic.net/free-photo/modern-empty-room_23-2150528549.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/modern-empty-room_23-2150528549.jpg?_wi=2",
imageAlt: "High-end flooring options",
},
{
@@ -117,7 +117,7 @@ export default function ProductsPage() {
name: "High-End Mirrors",
price: "From $199",
variant: "Modern & Luxury Styles",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-going-art-gallery_23-2149709085.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-man-going-art-gallery_23-2149709085.jpg?_wi=2",
imageAlt: "Designer mirror collection",
},
]}
@@ -148,37 +148,37 @@ export default function ProductsPage() {
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=2",
},
{
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=2",
},
{
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=2",
},
{
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=2",
},
{
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=2",
},
{
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=2",
},
]}
gridVariant="bento-grid"

View File

@@ -92,7 +92,7 @@ export default function ReviewsPage() {
name: "Maria Rodriguez",
role: "Homeowner",
testimonial: "Amazing store… great prices and variety. Awesome customer service. I'll definitely come back for my next project!",
imageSrc: "http://img.b2bpic.net/free-photo/sonrisa-belleza-gente-alegria-chicas_1301-1166.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/sonrisa-belleza-gente-alegria-chicas_1301-1166.jpg?_wi=2",
imageAlt: "Maria Rodriguez",
},
{
@@ -100,7 +100,7 @@ export default function ReviewsPage() {
name: "John Martinez",
role: "Contractor",
testimonial: "I'm absolutely delighted… excellent quality doors. Highly recommend to anyone looking for premium doors and fixtures.",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1622.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/young-businessman-happy-expression_1194-1622.jpg?_wi=2",
imageAlt: "John Martinez",
},
{
@@ -108,7 +108,7 @@ export default function ReviewsPage() {
name: "Sofia Gonzalez",
role: "Interior Designer",
testimonial: "They helped me choose exactly what I needed. Everything looks beautiful and arrived on time. Professional team!",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-albino-woman-with-flowers_23-2150520246.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/portrait-beautiful-albino-woman-with-flowers_23-2150520246.jpg?_wi=2",
imageAlt: "Sofia Gonzalez",
},
{
@@ -116,7 +116,7 @@ export default function ReviewsPage() {
name: "Carlos Mendez",
role: "Property Developer",
testimonial: "Spectacular variety. Highly recommended. Their competitive pricing and quality products make them my go-to for all projects.",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-hipster-male-dressed-suit-sunglasses-dark-grey-background_613910-12487.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/stylish-bearded-hipster-male-dressed-suit-sunglasses-dark-grey-background_613910-12487.jpg?_wi=2",
imageAlt: "Carlos Mendez",
},
{
@@ -124,7 +124,7 @@ export default function ReviewsPage() {
name: "Isabella Santos",
role: "Homeowner",
testimonial: "I purchased a sink with cabinet and got it installed. It looks beautiful. Great prices, excellent service overall.",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-caucasian-woman-office-looking-camera_23-2148187145.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/smiling-beautiful-caucasian-woman-office-looking-camera_23-2148187145.jpg?_wi=2",
imageAlt: "Isabella Santos",
},
{
@@ -132,7 +132,7 @@ export default function ReviewsPage() {
name: "Diego Rossi",
role: "Real Estate Agent",
testimonial: "A really good experience from start to finish. Their products add real value to homes. Reliable and professional.",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-business-man-city_23-2148479568.jpg",
imageSrc: "http://img.b2bpic.net/free-photo/side-view-business-man-city_23-2148479568.jpg?_wi=2",
imageAlt: "Diego Rossi",
},
]}

View File

@@ -114,19 +114,19 @@ export default function ShowroomPage() {
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=2",
},
{
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=2",
},
{
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=2",
},
]}
gridVariant="three-columns-all-equal-width"