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 type { Metadata } from "next";
import { Source_Sans_3 } from "next/font/google"; import { Geist, Geist_Mono } from "next/font/google";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const sourceSans3 = Source_Sans_3({ const geist = Geist({
variable: "--font-source-sans-3", subsets: ["latin"], variable: "--font-geist-sans", subsets: ["latin"],
}); });
const halant = Halant({ const geistMono = Geist_Mono({
variable: "--font-halant", subsets: ["latin"], variable: "--font-geist-mono", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
}); });
export const metadata: Metadata = { 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: "Create Next App", description: "Generated by create next app"};
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
}
};
export default function RootLayout({ export default function RootLayout({
children, children,
}: Readonly<{ }: {
children: React.ReactNode; children: React.ReactNode;
}>) { }) {
return ( return (
<html lang="en" suppressHydrationWarning> <html lang="en">
<ServiceWrapper> <body className={`${geist.variable} ${geistMono.variable}`}>
<body {children}
className={`${sourceSans3.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1410,7 +1390,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

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