2 Commits

Author SHA1 Message Date
29741fb80e Update src/app/page.tsx 2026-03-04 09:06:10 +00:00
96d2d7f1e9 Update src/app/layout.tsx 2026-03-04 09:06:09 +00:00
2 changed files with 23 additions and 15 deletions

View File

@@ -1,14 +1,10 @@
import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
import "./styles/variables.css";
import "./styles/base.css";
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "mmart - Premium Online Shopping", description: "Discover an extensive collection of premium products curated just for you. Shop with confidence and enjoy seamless checkout experiences."};
@@ -20,7 +16,7 @@ export default function RootLayout({
}) {
return (
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
<body className={inter.className}>
{children}
<script

View File

@@ -11,7 +11,7 @@ import PricingCardEight from "@/components/sections/pricing/PricingCardEight";
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
import ContactSplit from "@/components/sections/contact/ContactSplit";
import FooterSimple from "@/components/sections/footer/FooterSimple";
import { Sparkles, Award, Zap, Heart, Shield, Mail, Package, Crown } from "lucide-react";
import { Sparkles, Award, Zap, Heart, Shield, Mail, Package, Crown, ShoppingCart } from "lucide-react";
export default function HomePage() {
const navItems = [
@@ -118,13 +118,26 @@ export default function HomePage() {
tagAnimation="slide-up"
products={[
{
id: "1", name: "Premium Wireless Headphones", price: "$129.99", imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-cup-store-concept-choosing-dishes_169016-23448.jpg", imageAlt: "premium product high quality item featured merchandise best seller product highlight"},
id: "1", name: "Premium Wireless Headphones", price: "$129.99", imageSrc: "http://img.b2bpic.net/free-photo/woman-holding-cup-store-concept-choosing-dishes_169016-23448.jpg", imageAlt: "premium product high quality item featured merchandise best seller product highlight", onProductClick: () => {
// Handle add to cart or product details
console.log("Product clicked: Premium Wireless Headphones");
},
},
{
id: "2", name: "Ultra-Slim Smartwatch", price: "$199.99", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-with-black-friday-shopping-bag_23-2148313165.jpg", imageAlt: "exclusive product trending item popular merchandise customer favorite top rated"},
id: "2", name: "Ultra-Slim Smartwatch", price: "$199.99", imageSrc: "http://img.b2bpic.net/free-photo/beautiful-woman-with-black-friday-shopping-bag_23-2148313165.jpg", imageAlt: "exclusive product trending item popular merchandise customer favorite top rated", onProductClick: () => {
console.log("Product clicked: Ultra-Slim Smartwatch");
},
},
{
id: "3", name: "4K Action Camera", price: "$349.99", imageSrc: "http://img.b2bpic.net/free-vector/products-badges-collection-flat-style_23-2147537001.jpg", imageAlt: "quality goods bestseller popular product customer choice recommended item"},
id: "3", name: "4K Action Camera", price: "$349.99", imageSrc: "http://img.b2bpic.net/free-vector/products-badges-collection-flat-style_23-2147537001.jpg", imageAlt: "quality goods bestseller popular product customer choice recommended item", onProductClick: () => {
console.log("Product clicked: 4K Action Camera");
},
},
{
id: "4", name: "Portable Charger Pro", price: "$79.99", imageSrc: "http://img.b2bpic.net/free-photo/happy-father-s-day-composition-father-s-day-top-view_185193-109773.jpg", imageAlt: "limited edition special product unique item exclusive merchandise featured collection"},
id: "4", name: "Portable Charger Pro", price: "$79.99", imageSrc: "http://img.b2bpic.net/free-photo/happy-father-s-day-composition-father-s-day-top-view_185193-109773.jpg", imageAlt: "limited edition special product unique item exclusive merchandise featured collection", onProductClick: () => {
console.log("Product clicked: Portable Charger Pro");
},
},
]}
gridVariant="bento-grid"
animationType="slide-up"
@@ -224,7 +237,6 @@ export default function HomePage() {
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
cardClassName="data-[popular='true']:ring-2 data-[popular='true']:ring-primary-cta data-[popular='true']:shadow-lg data-[popular='true']:shadow-primary-cta/20 data-[popular='true']:scale-105"
/>
</div>