Update src/app/products/tirzepatide/page.tsx

This commit is contained in:
2026-04-07 00:35:40 +00:00
parent 7090f3c9b8
commit d48e18b424

View File

@@ -4,27 +4,49 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import LegalSection from '@/components/legal/LegalSection';
export default function TirzepatidePage() {
return (
<ThemeProvider defaultButtonVariant="text-stagger" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ThemeProvider
defaultButtonVariant="bounce-effect"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
contentWidth="mediumLarge"
sizing="mediumLarge"
background="blurBottom"
cardStyle="solid"
primaryButtonStyle="double-inset"
secondaryButtonStyle="layered"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleApple navItems={[{name: 'Home', id: '/'}, {name: 'Products', id: '/products'}]} brandName="Peptify" />
</div>
<main className="container mx-auto px-6 py-24">
<h1 className="text-4xl font-bold mb-6">Tirzepatide</h1>
<p className="text-lg mb-8">High-purity Tirzepatide for metabolic and physiological research.</p>
<h2 className="text-2xl font-semibold mb-4">Benefits</h2>
<ul className="list-disc pl-6 mb-8">
<li>Supports metabolic pathways</li>
<li>High potency formulation</li>
<li>HPLC verified purity</li>
</ul>
<h2 className="text-2xl font-semibold mb-4">Recommended Uses</h2>
<p className="mb-8">For exclusive use in controlled laboratory research environments.</p>
</main>
<FooterSimple columns={[]} bottomLeftText="© 2024 Peptify." bottomRightText="For Research Use Only." />
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
]}
brandName="Peptify"
/>
<LegalSection
layout="page"
title="Tirzepatide"
subtitle="Biological Mechanisms & Research Applications"
sections={[
{ heading: "Biological Mechanism", content: { type: "paragraph", text: "Tirzepatide acts as a dual agonist for the Glucose-dependent Insulinotropic Polypeptide (GIP) and Glucagon-Like Peptide-1 (GLP-1) receptors. By stimulating these receptors, it influences insulin secretion, glucagon suppression, and gastric emptying, playing a critical role in metabolic pathway studies." } },
{ heading: "Research Value", content: { type: "paragraph", text: "Widely studied for its impact on metabolic health, Tirzepatide serves as a significant compound for understanding glucose homeostasis and appetite regulation mechanisms in research environments." } }
]}
/>
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Products", href: "/products" }, { label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Disclaimer", href: "/disclaimer" }, { label: "Terms", href: "/terms" }] },
]}
bottomLeftText="© 2024 Peptify. For Research Use Only."
bottomRightText="All rights reserved."
/>
</ReactLenis>
</ThemeProvider>
);