Compare commits
25 Commits
version_25
...
version_27
| Author | SHA1 | Date | |
|---|---|---|---|
| 3263acb8c7 | |||
| 3b593a941c | |||
| 1c1bd0453c | |||
| 11ebef9500 | |||
| a1631cd309 | |||
| 1c8517caf5 | |||
| 96ffc2477e | |||
| 5204a2f5cb | |||
| 6974f58eec | |||
| 11eff7b5c8 | |||
| 7c68da187f | |||
| 8f949f4226 | |||
| c757df36ea | |||
| 5e539bc0ed | |||
| 41642782eb | |||
| 501c113d02 | |||
| 0a7589c834 | |||
| a3f074ecb2 | |||
| 6ad93b062b | |||
| 98b0b009f3 | |||
| d48e18b424 | |||
| 7090f3c9b8 | |||
| a5a3b69279 | |||
| 6957860007 | |||
| 223384a4f1 |
53
src/app/klow/page.tsx
Normal file
53
src/app/klow/page.tsx
Normal 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
53
src/app/mots-c/page.tsx
Normal 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
53
src/app/nad-plus/page.tsx
Normal 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>
|
||||
);
|
||||
}
|
||||
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user