Merge version_27 into main

Merge version_27 into main
This commit was merged in pull request #44.
This commit is contained in:
2026-04-07 01:33:24 +00:00
4 changed files with 125 additions and 1 deletions

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

@@ -0,0 +1,40 @@
"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>
<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" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}

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

@@ -0,0 +1,40 @@
"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>
<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" }] },
]}
/>
</ReactLenis>
</ThemeProvider>
);
}

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

@@ -0,0 +1,40 @@
"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>
<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" }] },
]}
/>
</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"
/>
@@ -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>
);
}
}