19 Commits

Author SHA1 Message Date
38b3ab0ac5 Update src/app/products/page.tsx 2026-04-06 20:58:20 +00:00
029ae3b07c Merge version_9 into main
Merge version_9 into main
2026-04-06 20:55:08 +00:00
04e936ee13 Update src/app/products/page.tsx 2026-04-06 20:55:02 +00:00
45784257bd Update src/app/page.tsx 2026-04-06 20:55:02 +00:00
b7c24e64d7 Merge version_8 into main
Merge version_8 into main
2026-04-06 20:51:56 +00:00
f7051404c1 Update src/app/products/page.tsx 2026-04-06 20:51:50 +00:00
2834f21450 Update src/app/page.tsx 2026-04-06 20:51:50 +00:00
7e0711cead Merge version_7 into main
Merge version_7 into main
2026-04-06 20:50:16 +00:00
8df90251d5 Update src/app/products/page.tsx 2026-04-06 20:50:13 +00:00
ca3d78192e Merge version_7 into main
Merge version_7 into main
2026-04-06 20:49:52 +00:00
bae460657a Update src/app/products/page.tsx 2026-04-06 20:49:46 +00:00
f14ec201b1 Merge version_6 into main
Merge version_6 into main
2026-04-06 20:47:39 +00:00
627d67aa53 Update src/app/faq/page.tsx 2026-04-06 20:47:36 +00:00
b50d33f972 Merge version_6 into main
Merge version_6 into main
2026-04-06 20:47:13 +00:00
627e852ec2 Update src/app/products/page.tsx 2026-04-06 20:47:09 +00:00
6a4076957f Update src/app/page.tsx 2026-04-06 20:47:09 +00:00
a5e09263fe Add src/app/faq/page.tsx 2026-04-06 20:47:09 +00:00
641b094516 Update src/app/contact/page.tsx 2026-04-06 20:47:08 +00:00
743f7a6759 Merge version_5 into main
Merge version_5 into main
2026-04-06 20:43:58 +00:00
4 changed files with 98 additions and 20 deletions

View File

@@ -4,6 +4,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactCTA from '@/components/sections/contact/ContactCTA';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function ContactPage() {
return (
@@ -41,6 +42,14 @@ export default function ContactPage() {
useInvertedBackground={false}
/>
</div>
<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", href: "#" }] },
]}
bottomLeftText="© 2024 Peptify. For Research Use Only."
bottomRightText="All rights reserved."
/>
</ReactLenis>
</ThemeProvider>
);

64
src/app/faq/page.tsx Normal file
View File

@@ -0,0 +1,64 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function FaqPage() {
return (
<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>
<NavbarStyleApple
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" }
]}
brandName="Peptify"
/>
<div className="pt-32 pb-20">
<FaqSplitText
sideTitle="Peptide Research FAQ"
sideDescription="Common questions regarding research peptides, purity, and handling standards."
faqsAnimation="blur-reveal"
useInvertedBackground={false}
faqs={[
{ id: "1", title: "What are research peptides?", content: "Peptides are short chains of amino acids. Our research peptides are high-purity compounds intended strictly for laboratory and research use." },
{ id: "2", title: "Are these products for human use?", content: "No. All products sold by Peptify are for laboratory research and forensic use only. They are not intended for human consumption or therapeutic use." },
{ id: "3", title: "How should I store my peptides?", content: "Most lyophilized peptides should be kept at -20°C for long-term storage, or 2-8°C for short-term. Avoid moisture and direct sunlight." },
{ id: "4", title: "What is the meaning of purity in peptides?", content: "Purity refers to the percentage of the peptide that is the intended sequence compared to impurities. We ensure high-performance liquid chromatography verification." },
{ id: "5", title: "How are peptides reconstituted?", content: "Reconstitution typically involves using sterile bacteriostatic water or saline, depending on the research protocol requirements." },
{ id: "6", title: "Are your peptides third-party tested?", content: "Yes, all our peptides undergo rigorous third-party analytical testing to ensure the quality and purity promised to our research clients." },
{ id: "7", title: "What is lyophilization?", content: "Lyophilization, or freeze-drying, is a process used to preserve peptide stability by removing water from the frozen product under vacuum." },
{ id: "8", title: "What if my vial appears empty?", content: "Peptides often form a thin, nearly invisible film at the bottom of the vial after the lyophilization process; this is normal and not a sign of an empty vial." },
{ id: "9", title: "Can I travel with these vials?", content: "Regulations vary, but research chemicals should always be labeled properly with accompanying analytical documentation for all transport." },
{ id: "10", title: "How do I request a bulk quote?", content: "For large-scale research needs, please reach out through our contact page with your specific requirements and quantities." }
]}
/>
</div>
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Products", href: "/products" }, { label: "Contact", href: "/contact" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }] },
]}
bottomLeftText="© 2024 Peptify. For Research Use Only."
bottomRightText="All rights reserved."
/>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -5,10 +5,8 @@ import ReactLenis from "lenis/react";
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen';
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
export default function LandingPage() {
return (
@@ -30,7 +28,7 @@ export default function LandingPage() {
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "FAQ", id: "#faq" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
]}
brandName="Peptify"
@@ -55,16 +53,16 @@ export default function LandingPage() {
</div>
<div id="products" data-section="products">
<ProductCardOne
<ProductCardFour
animationType="slide-up"
textboxLayout="split-actions"
gridVariant="three-columns-all-equal-width"
gridVariant="uniform-all-items-equal"
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" },
{ 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" },
{ 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" },
{ 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" },
]}
title="Our Peptide Collection"
description="Pharmaceutical grade compounds in high-potency concentrations."
@@ -88,7 +86,7 @@ export default function LandingPage() {
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Products", href: "/products" }, { label: "Contact", href: "/contact" }] },
{ 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: "#" }, { label: "Disclaimer", href: "#" }] },
]}
bottomLeftText="© 2024 Peptify. For Research Use Only."

View File

@@ -3,7 +3,7 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import ProductCardOne from '@/components/sections/product/ProductCardOne';
import ProductCardFour from '@/components/sections/product/ProductCardFour';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function ProductsPage() {
@@ -32,25 +32,32 @@ export default function ProductsPage() {
/>
<div className="pt-32 pb-20">
<ProductCardOne
<ProductCardFour
animationType="slide-up"
textboxLayout="default"
gridVariant="four-items-2x2-equal-grid"
gridVariant="uniform-all-items-equal"
useInvertedBackground={false}
title="Standard Product Catalog"
description="Browse our comprehensive list of pharmaceutical-grade research peptides."
title="Full Research Catalog"
description="Complete list of pharmaceutical-grade research compounds."
buttons={[{ text: "Contact for Pricing", href: "/contact" }]}
products={[
{ id: "1", name: "Tirzepatide", price: "Inquire", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzpXIQ8WhJ8WvoMuxtEmg0ewMo/medical-vial-of-tirzepatide-in-a-sterile-1775505032194-38e18dca.png?_wi=2" },
{ id: "2", name: "Retatrutide", price: "Inquire", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzpXIQ8WhJ8WvoMuxtEmg0ewMo/medical-vial-of-retatrutide-in-a-sterile-1775505032674-eda4960c.png?_wi=2" },
{ id: "3", name: "MOTS-C 10MG", price: "Inquire", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzpXIQ8WhJ8WvoMuxtEmg0ewMo/medical-vial-of-mots-c-in-a-sterile-envi-1775505033701-d7599eb5.png" },
{ id: "4", name: "NAD+ 500MG", price: "Inquire", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzpXIQ8WhJ8WvoMuxtEmg0ewMo/medical-vial-of-nad-500mg-in-a-sterile-e-1775505033201-78ee626f.png" },
{ id: "t1", name: "Tirzepatide 10mg", 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=2", variant: "10mg" },
{ id: "t2", name: "Tirzepatide 20mg", 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=2", variant: "20mg" },
{ id: "t3", name: "Tirzepatide 30mg", 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=2", variant: "30mg" },
{ id: "r1", name: "Retatrutide 10mg", 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=2", variant: "10mg" },
{ id: "r2", name: "Retatrutide 20mg", 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=2", variant: "20mg" },
{ id: "r3", name: "Retatrutide 30mg", 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=2", variant: "30mg" },
{ id: "bpc", 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", variant: "10mg" },
{ id: "klow", name: "KLOW 80MG", price: "Contact for pricing", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzpXIQ8WhJ8WvoMuxtEmg0ewMo/medical-vial-of-nad-500mg-in-a-sterile-e-1775505033201-78ee626f.png?_wi=1", variant: "80mg" },
{ id: "mots", name: "MOTS-C 10mg", price: "Contact for pricing", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzpXIQ8WhJ8WvoMuxtEmg0ewMo/medical-vial-of-mots-c-in-a-sterile-envi-1775505033701-d7599eb5.png", variant: "10mg" },
{ id: "nad", name: "NAD+ 500mg", price: "Contact for pricing", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BzpXIQ8WhJ8WvoMuxtEmg0ewMo/medical-vial-of-nad-500mg-in-a-sterile-e-1775505033201-78ee626f.png?_wi=2", variant: "500mg" },
]}
/>
</div>
<FooterSimple
columns={[
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Products", href: "/products" }] },
{ title: "Company", items: [{ label: "Home", href: "/" }, { label: "Products", href: "/products" }, { label: "FAQ", href: "/faq" }, { label: "Contact", href: "/contact" }] },
{ title: "Legal", items: [{ label: "Privacy", href: "#" }] },
]}
bottomLeftText="© 2024 Peptify. For Research Use Only."