7 Commits

Author SHA1 Message Date
96e60282be Update src/app/page.tsx 2026-03-04 06:21:23 +00:00
2fc90b25f9 Update src/app/layout.tsx 2026-03-04 06:21:23 +00:00
e02c0e5c4c Merge version_1 into main
Merge version_1 into main
2026-03-04 06:20:35 +00:00
2a5c2e65f8 Merge version_1 into main
Merge version_1 into main
2026-03-04 06:20:14 +00:00
b0f7d097d4 Merge version_1 into main
Merge version_1 into main
2026-03-04 06:08:40 +00:00
1623273cd1 Merge version_1 into main
Merge version_1 into main
2026-03-04 06:07:50 +00:00
10f03e3e96 Merge version_1 into main
Merge version_1 into main
2026-03-04 06:06:28 +00:00
2 changed files with 13 additions and 34 deletions

View File

@@ -1,48 +1,28 @@
import type { Metadata } from "next";
import { Source_Sans_3 } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } 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 halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = {
title: "Premium Marble Export | Global Quality Stone Supplier", description: "World-class marble export sourcing premium stones for architects, designers, and contractors. 30+ years of excellence in luxury marble selection.", keywords: "marble export, premium marble, natural stone, marble supplier, architectural marble, luxury stone", openGraph: {
title: "Premium Marble Export | Global Quality Stone Supplier", description: "World-class marble export sourcing premium stones for architects, designers, and contractors.", type: "website", siteName: "Marble Export"
},
robots: {
index: true,
follow: true
}
};
title: "Create Next App", description: "Generated by create next app"};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${sourceSans3.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={`${geist.variable} ${geistMono.variable}`}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1410,7 +1390,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -64,7 +64,7 @@ export default function MarbleLandingPage() {
}
]}
buttons={[
{ text: "Explore Products", href: "products" },
{ text: "Request Marble Sample", href: "products" },
{ text: "Get Quote", href: "contact" }
]}
buttonAnimation="slide-up"