Merge version_2 into main #1

Merged
bender merged 2 commits from version_2 into main 2026-03-05 17:50:34 +00:00
2 changed files with 14 additions and 26 deletions

View File

@@ -6,42 +6,27 @@ import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const mulish = Mulish({
variable: "--font-mulish",
subsets: ["latin"],
variable: "--font-mulish", subsets: ["latin"],
});
const inter = Inter({
variable: "--font-inter",
subsets: ["latin"],
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Electro Manager - Electronics Store Morocco",
description: "Shop premium electronics in Morocco: smartphones, laptops, tablets, TVs, cameras, and accessories. Fast delivery, authentic products, best prices.",
keywords: "electronics Morocco, smartphones, laptops, tablets, accessories, Marrakech, Casablanca",
robots: {
title: "Electro Manager - Electronics Store Morocco", description: "Shop premium electronics in Morocco: smartphones, laptops, tablets, TVs, cameras, and accessories. Fast delivery, authentic products, best prices.", keywords: "electronics Morocco, smartphones, laptops, tablets, accessories, Marrakech, Casablanca", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Electro Manager - Electronics Store Morocco",
description: "Shop premium electronics with fast delivery and authentic products.",
type: "website",
siteName: "Electro Manager",
images: [
title: "Electro Manager - Electronics Store Morocco", description: "Shop premium electronics with fast delivery and authentic products.", type: "website", siteName: "Electro Manager", images: [
{
url: "http://img.b2bpic.net/free-psd/new-smartphone-17-pro-social-media-banner-design-template_47987-33077.jpg",
alt: "Electro Manager Electronics Store",
},
url: "http://img.b2bpic.net/free-psd/new-smartphone-17-pro-social-media-banner-design-template_47987-33077.jpg", alt: "Electro Manager Electronics Store"},
],
},
twitter: {
card: "summary_large_image",
title: "Electro Manager - Electronics Store",
description: "Premium electronics with fast delivery and best prices in Morocco",
images: [
"http://img.b2bpic.net/free-psd/new-smartphone-17-pro-social-media-banner-design-template_47987-33077.jpg",
],
card: "summary_large_image", title: "Electro Manager - Electronics Store", description: "Premium electronics with fast delivery and best prices in Morocco", images: [
"http://img.b2bpic.net/free-psd/new-smartphone-17-pro-social-media-banner-design-template_47987-33077.jpg"],
},
};

View File

@@ -141,10 +141,10 @@ export default function HomePage() {
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-8">
{[
{ name: "iPhone 15 Pro Max", price: "5,999 dh", oldPrice: "6,999 dh", discount: "-14%", image: "http://img.b2bpic.net/free-vector/modern-concept-set-smart-phones-collection-with-two-realistic-black-mobile-phones-with-stylish-large-displays-grey_1284-49100.jpg" },
{ name: "MacBook Pro 16\"", price: "12,999 dh", oldPrice: "14,999 dh", discount: "-13%", image: "http://img.b2bpic.net/free-photo/grey-laptop-table_23-2148189995.jpg" },
{ name: "Samsung Galaxy S24", price: "4,499 dh", oldPrice: "5,299 dh", discount: "-15%", image: "http://img.b2bpic.net/free-vector/futuristic-mobile-technology-with-circuit-lines_1017-30932.jpg" },
{ name: "iPad Pro 12.9\"", price: "7,999 dh", oldPrice: "9,499 dh", discount: "-16%", image: "http://img.b2bpic.net/free-photo/close-up-technological-devices-wooden-desk_1232-474.jpg" },
{ name: "iPhone 15 Pro Max", price: "5,999 dh", oldPrice: "6,999 dh", discount: "-14%", stock: "Only 3 left", image: "http://img.b2bpic.net/free-vector/modern-concept-set-smart-phones-collection-with-two-realistic-black-mobile-phones-with-stylish-large-displays-grey_1284-49100.jpg" },
{ name: "MacBook Pro 16\"", price: "12,999 dh", oldPrice: "14,999 dh", discount: "-13%", stock: "Limited Stock", image: "http://img.b2bpic.net/free-photo/grey-laptop-table_23-2148189995.jpg" },
{ name: "Samsung Galaxy S24", price: "4,499 dh", oldPrice: "5,299 dh", discount: "-15%", stock: "Only 5 left", image: "http://img.b2bpic.net/free-vector/futuristic-mobile-technology-with-circuit-lines_1017-30932.jpg" },
{ name: "iPad Pro 12.9\"", price: "7,999 dh", oldPrice: "9,499 dh", discount: "-16%", stock: "Only 2 left", image: "http://img.b2bpic.net/free-photo/close-up-technological-devices-wooden-desk_1232-474.jpg" },
].map((product, idx) => (
<Link
key={idx}
@@ -161,6 +161,9 @@ export default function HomePage() {
<div className="absolute top-3 right-3 bg-[#e63946] text-white px-3 py-1 rounded-full text-sm font-bold">
{product.discount}
</div>
<div className="absolute bottom-3 left-3 bg-amber-500 text-white px-3 py-1 rounded-full text-xs font-bold">
{product.stock}
</div>
</div>
<div className="p-6">
<h3 className="text-lg font-bold text-[#120006e6] mb-2 line-clamp-2">{product.name}</h3>