32 Commits

Author SHA1 Message Date
3263acb8c7 Update src/app/nad-plus/page.tsx 2026-04-07 01:33:51 +00:00
3b593a941c Update src/app/mots-c/page.tsx 2026-04-07 01:33:51 +00:00
1c1bd0453c Update src/app/klow/page.tsx 2026-04-07 01:33:50 +00:00
11ebef9500 Update src/app/page.tsx 2026-04-07 01:33:20 +00:00
a1631cd309 Add src/app/nad-plus/page.tsx 2026-04-07 01:33:20 +00:00
1c8517caf5 Add src/app/mots-c/page.tsx 2026-04-07 01:33:19 +00:00
96ffc2477e Add src/app/klow/page.tsx 2026-04-07 01:33:19 +00:00
5204a2f5cb Switch to version 25: modified src/app/products/tirzepatide/page.tsx 2026-04-07 00:41:58 +00:00
6974f58eec Switch to version 25: modified src/app/products/retatrutide/page.tsx 2026-04-07 00:41:58 +00:00
11eff7b5c8 Switch to version 25: modified src/app/products/bpc-tb/page.tsx 2026-04-07 00:41:57 +00:00
7c68da187f Merge version_26 into main
Merge version_26 into main
2026-04-07 00:41:28 +00:00
8f949f4226 Update src/app/products/tirzepatide/page.tsx 2026-04-07 00:41:25 +00:00
c757df36ea Update src/app/products/retatrutide/page.tsx 2026-04-07 00:41:24 +00:00
5e539bc0ed Merge version_26 into main
Merge version_26 into main
2026-04-07 00:38:49 +00:00
41642782eb Update src/app/products/tirzepatide/page.tsx 2026-04-07 00:38:46 +00:00
501c113d02 Update src/app/products/retatrutide/page.tsx 2026-04-07 00:38:46 +00:00
0a7589c834 Merge version_26 into main
Merge version_26 into main
2026-04-07 00:38:19 +00:00
a3f074ecb2 Update src/app/products/tirzepatide/page.tsx 2026-04-07 00:38:13 +00:00
6ad93b062b Update src/app/products/retatrutide/page.tsx 2026-04-07 00:38:13 +00:00
98b0b009f3 Merge version_26 into main
Merge version_26 into main
2026-04-07 00:35:43 +00:00
d48e18b424 Update src/app/products/tirzepatide/page.tsx 2026-04-07 00:35:40 +00:00
7090f3c9b8 Update src/app/products/retatrutide/page.tsx 2026-04-07 00:35:39 +00:00
a5a3b69279 Update src/app/products/bpc-tb/page.tsx 2026-04-07 00:35:39 +00:00
6957860007 Merge version_25 into main
Merge version_25 into main
2026-04-07 00:33:02 +00:00
feea50ee40 Update src/app/products/tirzepatide/page.tsx 2026-04-07 00:32:59 +00:00
e2c6e8f5ca Update src/app/products/retatrutide/page.tsx 2026-04-07 00:32:59 +00:00
173e07d238 Update src/app/products/bpc-tb/page.tsx 2026-04-07 00:32:58 +00:00
223384a4f1 Merge version_25 into main
Merge version_25 into main
2026-04-07 00:32:34 +00:00
523ed30504 Add src/app/products/tirzepatide/page.tsx 2026-04-07 00:32:31 +00:00
eade2d4412 Add src/app/products/retatrutide/page.tsx 2026-04-07 00:32:30 +00:00
c1f033bfce Add src/app/products/bpc-tb/page.tsx 2026-04-07 00:32:30 +00:00
c6a5513769 Update src/app/page.tsx 2026-04-07 00:32:29 +00:00
7 changed files with 256 additions and 4 deletions

53
src/app/klow/page.tsx Normal file
View File

@@ -0,0 +1,53 @@
"use client";
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';
export default function KlowPage() {
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"
>
<ReactLenis root>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
{ name: "Klow", id: "/klow" },
{ name: "Mots-c", id: "/mots-c" },
{ name: "NAD+", id: "/nad-plus" },
]}
brandName="Peptify"
/>
<div className="container mx-auto py-24">
<h1 className="text-4xl font-bold mb-6">Klow</h1>
<div className="prose max-w-none">
<p>Details about Klow, its effects on the human body, key benefits, and research-grade usage guidelines.</p>
</div>
</div>
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Products", href: "/products" }, { label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
{ title: "Compounds", items: [{ label: "Klow", href: "/klow" }, { label: "Mots-c", href: "/mots-c" }, { label: "NAD+", href: "/nad-plus" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Disclaimer", href: "/disclaimer" }, { label: "Terms", href: "/terms" }] },
]}
bottomLeftText="© 2025 Peptify"
bottomRightText="All rights reserved"
/>
</ReactLenis>
</ThemeProvider>
);
}

53
src/app/mots-c/page.tsx Normal file
View File

@@ -0,0 +1,53 @@
"use client";
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';
export default function MotsCPage() {
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"
>
<ReactLenis root>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
{ name: "Klow", id: "/klow" },
{ name: "Mots-c", id: "/mots-c" },
{ name: "NAD+", id: "/nad-plus" },
]}
brandName="Peptify"
/>
<div className="container mx-auto py-24">
<h1 className="text-4xl font-bold mb-6">Mots-c</h1>
<div className="prose max-w-none">
<p>Details about Mots-c, its effects on the human body, key benefits, and research-grade usage guidelines.</p>
</div>
</div>
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Products", href: "/products" }, { label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
{ title: "Compounds", items: [{ label: "Klow", href: "/klow" }, { label: "Mots-c", href: "/mots-c" }, { label: "NAD+", href: "/nad-plus" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Disclaimer", href: "/disclaimer" }, { label: "Terms", href: "/terms" }] },
]}
bottomLeftText="© 2025 Peptify"
bottomRightText="All rights reserved"
/>
</ReactLenis>
</ThemeProvider>
);
}

53
src/app/nad-plus/page.tsx Normal file
View File

@@ -0,0 +1,53 @@
"use client";
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';
export default function NadPlusPage() {
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"
>
<ReactLenis root>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
{ name: "Klow", id: "/klow" },
{ name: "Mots-c", id: "/mots-c" },
{ name: "NAD+", id: "/nad-plus" },
]}
brandName="Peptify"
/>
<div className="container mx-auto py-24">
<h1 className="text-4xl font-bold mb-6">NAD+</h1>
<div className="prose max-w-none">
<p>Details about NAD+, its effects on the human body, key benefits, and research-grade usage guidelines.</p>
</div>
</div>
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Products", href: "/products" }, { label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
{ title: "Compounds", items: [{ label: "Klow", href: "/klow" }, { label: "Mots-c", href: "/mots-c" }, { label: "NAD+", href: "/nad-plus" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Disclaimer", href: "/disclaimer" }, { label: "Terms", href: "/terms" }] },
]}
bottomLeftText="© 2025 Peptify"
bottomRightText="All rights reserved"
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -32,6 +32,9 @@ export default function LandingPage() {
{ name: "Products", id: "/products" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
{ name: "Klow", id: "/klow" },
{ name: "Mots-c", id: "/mots-c" },
{ name: "NAD+", id: "/nad-plus" },
]}
brandName="Peptify"
/>
@@ -62,9 +65,9 @@ export default function LandingPage() {
useInvertedBackground={false}
buttons={[{ text: "Contact for Pricing", href: "/contact" }]}
products={[
{ id: "1", name: "Tirzepatide", price: "Contact for pricing", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzpXIQ8WhJ8WvoMuxtEmg0ewMo/medical-vial-of-tirzepatide-in-a-sterile-1775505032194-38e18dca.png?_wi=1", imageAlt: "Tirzepatide Vial", variant: "10mg" },
{ id: "2", name: "Retatrutide", price: "Contact for pricing", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzpXIQ8WhJ8WvoMuxtEmg0ewMo/medical-vial-of-retatrutide-in-a-sterile-1775505032674-eda4960c.png?_wi=1", imageAlt: "Retatrutide Vial", variant: "10mg" },
{ id: "3", name: "BPC + TB 10MG", price: "Contact for pricing", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzpXIQ8WhJ8WvoMuxtEmg0ewMo/medical-vial-of-bpc-tb-in-a-sterile-envi-1775505031642-de9329a9.png?_wi=1", imageAlt: "BPC+TB Vial", variant: "10mg" },
{ id: "1", name: "Tirzepatide", price: "Contact for pricing", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzpXIQ8WhJ8WvoMuxtEmg0ewMo/medical-vial-of-tirzepatide-in-a-sterile-1775505032194-38e18dca.png?_wi=1", imageAlt: "Tirzepatide Vial", variant: "10mg", onProductClick: () => window.location.href = "/products/tirzepatide" },
{ id: "2", name: "Retatrutide", price: "Contact for pricing", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzpXIQ8WhJ8WvoMuxtEmg0ewMo/medical-vial-of-retatrutide-in-a-sterile-1775505032674-eda4960c.png?_wi=1", imageAlt: "Retatrutide Vial", variant: "10mg", onProductClick: () => window.location.href = "/products/retatrutide" },
{ id: "3", name: "BPC + TB 10MG", price: "Contact for pricing", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzpXIQ8WhJ8WvoMuxtEmg0ewMo/medical-vial-of-bpc-tb-in-a-sterile-envi-1775505031642-de9329a9.png?_wi=1", imageAlt: "BPC+TB Vial", variant: "10mg", onProductClick: () => window.location.href = "/products/bpc-tb" },
]}
title="Premium Research Compounds"
description="Pharmaceutical grade compounds in high-potency concentrations."
@@ -114,6 +117,7 @@ export default function LandingPage() {
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Products", href: "/products" }, { label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
{ title: "Compounds", items: [{ label: "Klow", href: "/klow" }, { label: "Mots-c", href: "/mots-c" }, { label: "NAD+", href: "/nad-plus" }] },
{ title: "Legal", items: [{ label: "Privacy Policy", href: "/privacy" }, { label: "Disclaimer", href: "/disclaimer" }, { label: "Terms", href: "/terms" }] },
]}
bottomLeftText="© 2024 Peptify. For Research Use Only."
@@ -123,4 +127,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}

View File

@@ -0,0 +1,29 @@
"use client";
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';
export default function BpcTbPage() {
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">
<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">BPC + TB 10MG</h1>
<p className="text-lg mb-8">Synergistic blend for advanced study.</p>
<h2 className="text-2xl font-semibold mb-4">Usage Highlights</h2>
<ul className="list-disc pl-6 mb-8">
<li>Synergistic peptide action</li>
<li>Sterile-tested components</li>
<li>Batch-certified</li>
</ul>
</main>
<FooterSimple columns={[]} bottomLeftText="© 2024 Peptify." bottomRightText="For Research Use Only." />
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -0,0 +1,29 @@
"use client";
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';
export default function RetatrutidePage() {
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">
<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">Retatrutide</h1>
<p className="text-lg mb-8">Advanced agonist compound for research applications.</p>
<h2 className="text-2xl font-semibold mb-4">Key Results</h2>
<ul className="list-disc pl-6 mb-8">
<li>Stabilized molecular structure</li>
<li>Consistent batch performance</li>
<li>Pharmaceutical grade precision</li>
</ul>
</main>
<FooterSimple columns={[]} bottomLeftText="© 2024 Peptify." bottomRightText="For Research Use Only." />
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -0,0 +1,31 @@
"use client";
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';
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">
<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." />
</ReactLenis>
</ThemeProvider>
);
}