diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx
index 6e3a8fd..c4fd550 100644
--- a/src/app/contact/page.tsx
+++ b/src/app/contact/page.tsx
@@ -33,9 +33,7 @@ export default function ContactPage() {
{ name: "Contact", id: "contact" },
]}
button={{
- text: "Join Now",
- href: "/membership",
- }}
+ text: "Join Now", href: "/membership"}}
/>
@@ -50,7 +48,7 @@ export default function ContactPage() {
We're Here to Help
- Have questions about our products, membership plans, or need support? Our team is ready to assist you.
+ Have questions about our products, membership plans, personal product integrations, or need support? Our team is ready to assist you.
@@ -111,23 +109,18 @@ export default function ContactPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/membership/page.tsx b/src/app/membership/page.tsx
index b52b6a2..64176d8 100644
--- a/src/app/membership/page.tsx
+++ b/src/app/membership/page.tsx
@@ -35,9 +35,7 @@ export default function MembershipPage() {
{ name: "Contact", id: "contact" },
]}
button={{
- text: "Join Now",
- href: "/membership",
- }}
+ text: "Join Now", href: "/membership"}}
/>
@@ -45,78 +43,42 @@ export default function MembershipPage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/page.tsx b/src/app/page.tsx
index f5547bf..0a6c442 100644
--- a/src/app/page.tsx
+++ b/src/app/page.tsx
@@ -38,9 +38,7 @@ export default function HomePage() {
{ name: "Contact", id: "contact" },
]}
button={{
- text: "Join Now",
- href: "/membership",
- }}
+ text: "Join Now", href: "/membership"}}
/>
@@ -54,13 +52,9 @@ export default function HomePage() {
tagIcon={Shield}
buttons={[
{
- text: "Explore Products",
- href: "products",
- },
+ text: "Explore Products", href: "products"},
{
- text: "Start Membership",
- href: "/membership",
- },
+ text: "Start Membership", href: "/membership"},
]}
imageSrc="http://img.b2bpic.net/free-photo/top-view-aloe-vera-with-beauty-tools-cosmetics_23-2148179521.jpg?_wi=1"
imageAlt="Acne Hub premium skincare products collection"
@@ -71,38 +65,17 @@ export default function HomePage() {
);
-}
\ No newline at end of file
+}
diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx
index 25857dc..7d8cb86 100644
--- a/src/app/products/page.tsx
+++ b/src/app/products/page.tsx
@@ -19,35 +19,31 @@ const ProductsPage = () => {
const footerColumns = [
{
- title: "Shop",
- items: [
+ title: "Shop", items: [
{ label: "Products", href: "/products" },
- { label: "Membership", href: "/" },
+ { label: "Membership", href: "/membership" },
{ label: "Bundle Deals", href: "/products" },
],
},
{
- title: "Company",
- items: [
- { label: "About Us", href: "#" },
- { label: "Our Story", href: "#" },
- { label: "Careers", href: "#" },
+ title: "Company", items: [
+ { label: "About Us", href: "/about" },
+ { label: "Our Story", href: "/about" },
+ { label: "Careers", href: "/careers" },
],
},
{
- title: "Support",
- items: [
- { label: "Contact Us", href: "#" },
- { label: "FAQ", href: "/" },
- { label: "Shipping Info", href: "#" },
+ title: "Support", items: [
+ { label: "Contact Us", href: "/contact" },
+ { label: "FAQ", href: "/#faq" },
+ { label: "Shipping Info", href: "/shipping" },
],
},
{
- title: "Legal",
- items: [
- { label: "Privacy Policy", href: "#" },
- { label: "Terms of Service", href: "#" },
- { label: "Return Policy", href: "#" },
+ title: "Legal", items: [
+ { label: "Privacy Policy", href: "/privacy" },
+ { label: "Terms of Service", href: "/terms" },
+ { label: "Return Policy", href: "/returns" },
],
},
];
@@ -69,9 +65,7 @@ const ProductsPage = () => {
@@ -79,12 +73,12 @@ const ProductsPage = () => {
{
{
@@ -188,4 +140,4 @@ const ProductsPage = () => {
);
};
-export default ProductsPage;
\ No newline at end of file
+export default ProductsPage;