Merge version_2 into main #2

Merged
bender merged 2 commits from version_2 into main 2026-03-06 18:53:31 +00:00
2 changed files with 7 additions and 43 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${nunitoSans.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.variable}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1419,7 +1384,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -11,7 +11,7 @@ html {
body {
background-color: var(--background);
color: var(--foreground);
font-family: var(--font-nunito-sans), sans-serif;
font-family: var(--font-dm-sans), sans-serif;
position: relative;
min-height: 100vh;
overscroll-behavior: none;
@@ -24,5 +24,5 @@ h3,
h4,
h5,
h6 {
font-family: var(--font-nunito-sans), sans-serif;
font-family: var(--font-dm-sans), sans-serif;
}