3 Commits

Author SHA1 Message Date
4e9ccb9958 Update src/app/page.tsx 2026-03-04 09:02:03 +00:00
c8e6bf2a2d Update src/app/layout.tsx 2026-03-04 09:02:02 +00:00
e9dab9fa13 Merge version_1 into main
Merge version_1 into main
2026-03-04 08:58:32 +00:00
2 changed files with 11 additions and 48 deletions

View File

@@ -1,59 +1,23 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Montserrat } from "next/font/google"; import { Poppins } from "next/font/google";
import { Halant } from "next/font/google"; import "@/styles/globals.css";
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const montserrat = Montserrat({ const poppins = Poppins({
variable: "--font-montserrat", subsets: ["latin"], subsets: ["latin"],
}); weight: ["400", "500", "600", "700"],
const halant = Halant({
variable: "--font-halant", 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 Metal Solutions | Peermetals", description: "Discover world-class metal materials and precision engineering. Peermetals delivers aerospace-grade alloys and sustainable fabrication solutions for industry leaders.", keywords: "premium metals, titanium alloys, stainless steel, aerospace materials, metal fabrication", metadataBase: new URL("https://peermetals.com"), title: "Peermetals - Premium Metal Solutions", description: "World-class materials and precision engineering solutions for aerospace, manufacturing, and beyond."};
alternates: {
canonical: "https://peermetals.com"
},
openGraph: {
title: "Premium Metal Solutions | Peermetals", description: "Discover world-class metal materials and precision engineering.", type: "website", siteName: "Peermetals", images: [
{
url: "http://img.b2bpic.net/free-photo/wood-texture_1142-829.jpg", alt: "Peermetals Premium Metal Products"
}
]
},
twitter: {
card: "summary_large_image", title: "Premium Metal Solutions | Peermetals", description: "Discover world-class metal materials and precision engineering.", images: ["http://img.b2bpic.net/free-photo/wood-texture_1142-829.jpg"]
},
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={poppins.className}>{children}
<body
className={`${montserrat.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1421,7 +1385,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -224,7 +224,7 @@ export default function LandingPage() {
background={{ variant: "plain" }} background={{ variant: "plain" }}
buttons={[ buttons={[
{ text: "Request a Quote", href: "#" }, { text: "Request a Quote", href: "#" },
{ text: "Contact Sales", href: "#" } { text: "Schedule Consultation", href: "#" }
]} ]}
useInvertedBackground={false} useInvertedBackground={false}
/> />