diff --git a/src/app/klow/page.tsx b/src/app/klow/page.tsx new file mode 100644 index 0000000..0d9c6c9 --- /dev/null +++ b/src/app/klow/page.tsx @@ -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 ( + + + +
+

Klow

+
+

Details about Klow, its effects on the human body, key benefits, and research-grade usage guidelines.

+
+
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/mots-c/page.tsx b/src/app/mots-c/page.tsx new file mode 100644 index 0000000..d354403 --- /dev/null +++ b/src/app/mots-c/page.tsx @@ -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 ( + + + +
+

Mots-c

+
+

Details about Mots-c, its effects on the human body, key benefits, and research-grade usage guidelines.

+
+
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/nad-plus/page.tsx b/src/app/nad-plus/page.tsx new file mode 100644 index 0000000..cb1aadd --- /dev/null +++ b/src/app/nad-plus/page.tsx @@ -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 ( + + + +
+

NAD+

+
+

Details about NAD+, its effects on the human body, key benefits, and research-grade usage guidelines.

+
+
+ +
+
+ ); +} \ No newline at end of file diff --git a/src/app/page.tsx b/src/app/page.tsx index 4a06973..e6def25 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -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() { ); -} \ No newline at end of file +}