diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a5da0f2..7602697 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,57 +1,22 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Nunito_Sans } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); const inter = Inter({ variable: "--font-inter", subsets: ["latin"], }); -const nunitoSans = Nunito_Sans({ - variable: "--font-nunito-sans", subsets: ["latin"], -}); - export const metadata: Metadata = { - title: "Novalys Peptides – Premium Research-Grade Biotech", description: "HPLC-tested peptides for research. Tirzepatide, Semaglutide, BPC-157, TB500, and specialty blends. Factory-direct pricing, overnight shipping, secure checkout.", keywords: "research peptides, HPLC tested, Tirzepatide, Semaglutide, BPC-157, TB500, pharmaceutical grade, biotech research", metadataBase: new URL("https://novalys.bio"), - alternates: { - canonical: "https://novalys.bio"}, - openGraph: { - title: "Novalys Peptides – Premium Research-Grade Biotech", description: "HPLC-tested peptides for research. Tirzepatide, Semaglutide, BPC-157, TB500, and specialty blends. Factory-direct pricing, overnight shipping.", url: "https://novalys.bio", siteName: "Novalys", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/close-up-doctor-counting-covid-vaccines_23-2148747825.jpg", alt: "Premium frosted glass vials in surgical laboratory"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Novalys Peptides – Research-Grade Biotech", description: "HPLC-tested peptides. Factory-direct pricing. Overnight shipping.", images: ["http://img.b2bpic.net/free-photo/close-up-doctor-counting-covid-vaccines_23-2148747825.jpg"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Novalys - Research Grade Peptides", description: "Premium peptides for research"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}