4 Commits

Author SHA1 Message Date
2d7216eae2 Update src/app/page.tsx 2026-04-06 20:19:31 +00:00
c997d71031 Add src/app/contact/page.tsx 2026-04-06 20:19:31 +00:00
a6bcf71152 Merge version_3 into main
Merge version_3 into main
2026-04-06 20:11:22 +00:00
96debe7231 Merge version_3 into main
Merge version_3 into main
2026-04-06 20:10:50 +00:00
2 changed files with 51 additions and 2 deletions

47
src/app/contact/page.tsx Normal file
View File

@@ -0,0 +1,47 @@
"use client";
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';
export default function ContactPage() {
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">
<ContactCTA
tag="Get in Touch"
title="Contact Our Team"
description="Reach out for wholesale inquiries, custom orders, or any questions regarding our high-purity research peptides."
buttons={[
{ text: "Email Us", href: "mailto:inquiries@peptify.com" }
]}
background={{ variant: "plain" }}
useInvertedBackground={false}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}

View File

@@ -34,6 +34,8 @@ export default function LandingPage() {
name: "Products", id: "products"},
{
name: "FAQ", id: "faq"},
{
name: "Contact", id: "/contact"},
]}
brandName="Peptify"
/>
@@ -73,7 +75,7 @@ export default function LandingPage() {
useInvertedBackground={false}
buttons={[
{
text: "Inquire for Pricing", href: "mailto:inquiries@peptify.com"
text: "Contact for Pricing", href: "/contact"
}
]}
products={[
@@ -178,4 +180,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}