5 Commits

Author SHA1 Message Date
d40c61b4c5 Update src/app/page.tsx 2026-03-04 09:05:44 +00:00
f7c6450cc6 Update src/app/layout.tsx 2026-03-04 09:05:44 +00:00
2712f0d257 Merge version_1 into main
Merge version_1 into main
2026-03-04 09:01:50 +00:00
0bc471e239 Merge version_1 into main
Merge version_1 into main
2026-03-04 09:00:44 +00:00
c3ec28b273 Merge version_1 into main
Merge version_1 into main
2026-03-04 08:59:11 +00:00
2 changed files with 17 additions and 38 deletions

View File

@@ -1,49 +1,28 @@
import type { Metadata } from "next";
import { Source_Sans_3 } from "next/font/google";
import { Geist, Geist_Mono } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const sourceSans3 = Source_Sans_3({
variable: "--font-source-sans-3",
subsets: ["latin"],
const geist = Geist({
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "mmart - Premium Online Shopping Platform",
description: "Shop thousands of premium products with fast shipping, secure payments, and 24/7 customer support. Join 500K+ happy customers at mmart.",
keywords: "online shopping, ecommerce, products, buy online, shopping platform, retail",
metadataBase: new URL("https://mmart.example.com"),
alternates: {
canonical: "https://mmart.example.com",
},
openGraph: {
title: "mmart - Premium Online Shopping",
description: "Discover curated products, exclusive deals, and seamless shopping experience.",
siteName: "mmart",
type: "website",
},
twitter: {
card: "summary_large_image",
title: "mmart - Shop Premium Products",
description: "Fast shipping, secure payments, 24/7 support",
},
};
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."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${sourceSans3.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1411,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -224,6 +224,7 @@ 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>
@@ -270,4 +271,4 @@ export default function HomePage() {
</div>
</ThemeProvider>
);
}
}