Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4c6a89fd8c | |||
| 64bbee5743 | |||
| d96addca3f |
@@ -14,8 +14,11 @@ import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import { Activity, Gauge, Home } from "lucide-react";
|
||||
import { useRouter } from 'next/navigation';
|
||||
|
||||
export default function LandingPage() {
|
||||
const router = useRouter();
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-magnetic"
|
||||
@@ -83,7 +86,7 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
title="The world calls it a nose strip. JORDAN CALLS IT"
|
||||
description={[
|
||||
"TAPE IT is engineered to enhance nasal breathing, offering immediate relief and promoting overall well-being. Improve your sleep quality, boost athletic performance, and reduce snoring with our scientifically designed strips. We believe that nothing matters more than how you breathe."]}
|
||||
"TAPE IT is engineered to enhance nasal breathing, offering immediate relief and promoting overall well-being. Improve your sleep quality, boost athletic performance, and reduce snoring with our scientifically designed strips. We believe that nothing matters more than how you breathe." ]}
|
||||
buttons={[
|
||||
{
|
||||
text: "Learn More", href: "#features"},
|
||||
@@ -142,17 +145,23 @@ export default function LandingPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "nasal-strips-1", name: "Original Nasal Strips (30-pack)", price: "$19.99", imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-girl-black-sportswear-with-headband-puzzled-standing-white-wall_141793-56736.jpg?_wi=1", imageAlt: "TAPE IT Original Nasal Strips 30-pack"},
|
||||
id: "nasal-strips-1", name: "Original Nasal Strips (30-pack)", price: "$19.99", imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-girl-black-sportswear-with-headband-puzzled-standing-white-wall_141793-56736.jpg?_wi=1", imageAlt: "TAPE IT Original Nasal Strips 30-pack", onProductClick: () => router.push('/products/nasal-strips-1')
|
||||
},
|
||||
{
|
||||
id: "nasal-strips-2", name: "Sensitive Skin Nasal Strips (30-pack)", price: "$22.99", imageSrc: "http://img.b2bpic.net/free-photo/future-mother-keeps-shoes-baby_8353-5121.jpg?_wi=1", imageAlt: "TAPE IT Sensitive Skin Nasal Strips 30-pack"},
|
||||
id: "nasal-strips-2", name: "Sensitive Skin Nasal Strips (30-pack)", price: "$22.99", imageSrc: "http://img.b2bpic.net/free-photo/future-mother-keeps-shoes-baby_8353-5121.jpg?_wi=1", imageAlt: "TAPE IT Sensitive Skin Nasal Strips 30-pack", onProductClick: () => router.push('/products/nasal-strips-2')
|
||||
},
|
||||
{
|
||||
id: "nasal-strips-3", name: "Extra Strength Nasal Strips (30-pack)", price: "$21.99", imageSrc: "http://img.b2bpic.net/free-photo/woman-folding-menstrual-cup-medium-shot_23-2149734183.jpg?_wi=1", imageAlt: "TAPE IT Extra Strength Nasal Strips 30-pack"},
|
||||
id: "nasal-strips-3", name: "Extra Strength Nasal Strips (30-pack)", price: "$21.99", imageSrc: "http://img.b2bpic.net/free-photo/woman-folding-menstrual-cup-medium-shot_23-2149734183.jpg?_wi=1", imageAlt: "TAPE IT Extra Strength Nasal Strips 30-pack", onProductClick: () => router.push('/products/nasal-strips-3')
|
||||
},
|
||||
{
|
||||
id: "nasal-strips-4", name: "Original Nasal Strips (90-pack)", price: "$49.99", imageSrc: "http://img.b2bpic.net/free-photo/young-female-doctor-holding-hands-head-medical-uniform-mask-looking-confident_176474-81552.jpg?_wi=1", imageAlt: "TAPE IT Original Nasal Strips 90-pack"},
|
||||
id: "nasal-strips-4", name: "Original Nasal Strips (90-pack)", price: "$49.99", imageSrc: "http://img.b2bpic.net/free-photo/young-female-doctor-holding-hands-head-medical-uniform-mask-looking-confident_176474-81552.jpg?_wi=1", imageAlt: "TAPE IT Original Nasal Strips 90-pack", onProductClick: () => router.push('/products/nasal-strips-4')
|
||||
},
|
||||
{
|
||||
id: "nasal-strips-5", name: "Travel Pack Assorted (10-pack)", price: "$8.99", imageSrc: "http://img.b2bpic.net/free-photo/collagen-white-stick-with-glass-water_185193-162486.jpg?_wi=1", imageAlt: "TAPE IT Travel Pack Assorted Nasal Strips 10-pack"},
|
||||
id: "nasal-strips-5", name: "Travel Pack Assorted (10-pack)", price: "$8.99", imageSrc: "http://img.b2bpic.net/free-photo/collagen-white-stick-with-glass-water_185193-162486.jpg?_wi=1", imageAlt: "TAPE IT Travel Pack Assorted Nasal Strips 10-pack", onProductClick: () => router.push('/products/nasal-strips-5')
|
||||
},
|
||||
{
|
||||
id: "nasal-strips-6", name: "Kids Nasal Strips (20-pack)", price: "$14.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-putting-medical-mask-face-protection_23-2148802176.jpg?_wi=1", imageAlt: "TAPE IT Kids Nasal Strips 20-pack"},
|
||||
id: "nasal-strips-6", name: "Kids Nasal Strips (20-pack)", price: "$14.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-putting-medical-mask-face-protection_23-2148802176.jpg?_wi=1", imageAlt: "TAPE IT Kids Nasal Strips 20-pack", onProductClick: () => router.push('/products/nasal-strips-6')
|
||||
},
|
||||
]}
|
||||
title="Shop Our Collection"
|
||||
description="Find the perfect nasal strip to elevate your breathing, sleep, and performance."
|
||||
|
||||
@@ -5,8 +5,11 @@ import ReactLenis from "lenis/react";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ProductCardThree from '@/components/sections/product/ProductCardThree';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import { useRouter } from 'next/navigation';
|
||||
|
||||
export default function ProductsPage() {
|
||||
const router = useRouter();
|
||||
|
||||
const navItems = [
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Products", id: "/products" },
|
||||
@@ -44,22 +47,22 @@ export default function ProductsPage() {
|
||||
useInvertedBackground={false}
|
||||
products={[
|
||||
{
|
||||
id: "product-page-1", name: "Original Nasal Strips (30-pack)", price: "$19.99", imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-girl-black-sportswear-with-headband-puzzled-standing-white-wall_141793-56736.jpg?_wi=2", imageAlt: "TAPE IT Original Nasal Strips 30-pack"
|
||||
id: "nasal-strips-1", name: "Original Nasal Strips (30-pack)", price: "$19.99", imageSrc: "http://img.b2bpic.net/free-photo/young-fitness-girl-black-sportswear-with-headband-puzzled-standing-white-wall_141793-56736.jpg?_wi=2", imageAlt: "TAPE IT Original Nasal Strips 30-pack", onProductClick: () => router.push('/products/nasal-strips-1')
|
||||
},
|
||||
{
|
||||
id: "product-page-2", name: "Sensitive Skin Nasal Strips (30-pack)", price: "$22.99", imageSrc: "http://img.b2bpic.net/free-photo/future-mother-keeps-shoes-baby_8353-5121.jpg?_wi=2", imageAlt: "TAPE IT Sensitive Skin Nasal Strips 30-pack"
|
||||
id: "nasal-strips-2", name: "Sensitive Skin Nasal Strips (30-pack)", price: "$22.99", imageSrc: "http://img.b2bpic.net/free-photo/future-mother-keeps-shoes-baby_8353-5121.jpg?_wi=2", imageAlt: "TAPE IT Sensitive Skin Nasal Strips 30-pack", onProductClick: () => router.push('/products/nasal-strips-2')
|
||||
},
|
||||
{
|
||||
id: "product-page-3", name: "Extra Strength Nasal Strips (30-pack)", price: "$21.99", imageSrc: "http://img.b2bpic.net/free-photo/woman-folding-menstrual-cup-medium-shot_23-2149734183.jpg?_wi=2", imageAlt: "TAPE IT Extra Strength Nasal Strips 30-pack"
|
||||
id: "nasal-strips-3", name: "Extra Strength Nasal Strips (30-pack)", price: "$21.99", imageSrc: "http://img.b2bpic.net/free-photo/woman-folding-menstrual-cup-medium-shot_23-2149734183.jpg?_wi=2", imageAlt: "TAPE IT Extra Strength Nasal Strips 30-pack", onProductClick: () => router.push('/products/nasal-strips-3')
|
||||
},
|
||||
{
|
||||
id: "product-page-4", name: "Original Nasal Strips (90-pack)", price: "$49.99", imageSrc: "http://img.b2bpic.net/free-photo/young-female-doctor-holding-hands-head-medical-uniform-mask-looking-confident_176474-81552.jpg?_wi=2", imageAlt: "TAPE IT Original Nasal Strips 90-pack"
|
||||
id: "nasal-strips-4", name: "Original Nasal Strips (90-pack)", price: "$49.99", imageSrc: "http://img.b2bpic.net/free-photo/young-female-doctor-holding-hands-head-medical-uniform-mask-looking-confident_176474-81552.jpg?_wi=2", imageAlt: "TAPE IT Original Nasal Strips 90-pack", onProductClick: () => router.push('/products/nasal-strips-4')
|
||||
},
|
||||
{
|
||||
id: "product-page-5", name: "Travel Pack Assorted (10-pack)", price: "$8.99", imageSrc: "http://img.b2bpic.net/free-photo/collagen-white-stick-with-glass-water_185193-162486.jpg?_wi=2", imageAlt: "TAPE IT Travel Pack Assorted Nasal Strips 10-pack"
|
||||
id: "nasal-strips-5", name: "Travel Pack Assorted (10-pack)", price: "$8.99", imageSrc: "http://img.b2bpic.net/free-photo/collagen-white-stick-with-glass-water_185193-162486.jpg?_wi=2", imageAlt: "TAPE IT Travel Pack Assorted Nasal Strips 10-pack", onProductClick: () => router.push('/products/nasal-strips-5')
|
||||
},
|
||||
{
|
||||
id: "product-page-6", name: "Kids Nasal Strips (20-pack)", price: "$14.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-putting-medical-mask-face-protection_23-2148802176.jpg?_wi=2", imageAlt: "TAPE IT Kids Nasal Strips 20-pack"
|
||||
id: "nasal-strips-6", name: "Kids Nasal Strips (20-pack)", price: "$14.99", imageSrc: "http://img.b2bpic.net/free-photo/front-view-woman-putting-medical-mask-face-protection_23-2148802176.jpg?_wi=2", imageAlt: "TAPE IT Kids Nasal Strips 20-pack", onProductClick: () => router.push('/products/nasal-strips-6')
|
||||
}
|
||||
]}
|
||||
title="Our Full Collection"
|
||||
|
||||
Reference in New Issue
Block a user