diff --git a/src/app/page.tsx b/src/app/page.tsx
index 2818451..251ad79 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -30,14 +30,10 @@ export default function LandingPage() {
@@ -45,68 +41,15 @@ export default function LandingPage() {
-
-
-
@@ -115,18 +58,10 @@ export default function LandingPage() {
textboxLayout="inline-image"
useInvertedBackground={false}
features={[
- {
- title: "Pharmaceutical Grade", description: "99%+ purity ensured by rigorous third-party testing.", buttonIcon: Shield,
- imageSrc: "http://img.b2bpic.net/free-photo/isolated-screen-laptop-laboratory-displays-dna-visualization-software-used-process-patient_482257-133585.jpg?_wi=2", imageAlt: "scientific lab research"},
- {
- title: "Locally Crafted", description: "Proudly manufactured in Melbourne, Australia.", buttonIcon: Globe,
- imageSrc: "http://img.b2bpic.net/free-photo/black-bottle-pills-with-light-blue-label_187299-46204.jpg?_wi=3", imageAlt: "luxury peptide vial"},
- {
- title: "Clinically Backed", description: "Formulated by leading biochemists and peer-reviewed research.", buttonIcon: FlaskConical,
- imageSrc: "http://img.b2bpic.net/free-photo/assortment-delicious-fresh-vegetables_23-2148913342.jpg?_wi=3", imageAlt: "wellness supplement bottle"},
- {
- title: "Trusted by Athletes", description: "Used by professional sports competitors across the nation.", buttonIcon: Trophy,
- imageSrc: "http://img.b2bpic.net/free-photo/high-angle-pill-containers-foil_23-2148533493.jpg?_wi=3", imageAlt: "health supplement stack"},
+ { title: "Pharmaceutical Grade", description: "99%+ purity ensured by rigorous third-party testing.", buttonIcon: Shield },
+ { title: "Locally Crafted", description: "Proudly manufactured in Melbourne, Australia.", buttonIcon: Globe },
+ { title: "Clinically Backed", description: "Formulated by leading biochemists and peer-reviewed research.", buttonIcon: FlaskConical },
+ { title: "Trusted by Athletes", description: "Used by professional sports competitors across the nation.", buttonIcon: Trophy },
]}
title="Why Choose Melbourne Peptide Co."
description="Experience the pinnacle of Australian pharmaceutical science."
@@ -136,18 +71,7 @@ export default function LandingPage() {
diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx
new file mode 100644
index 0000000..e41269b
--- /dev/null
+++ b/src/app/products/page.tsx
@@ -0,0 +1,61 @@
+"use client";
+
+import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
+import ReactLenis from "lenis/react";
+import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
+import ProductCardThree from '@/components/sections/product/ProductCardThree';
+import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
+
+export default function ProductsPage() {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ );
+}