diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx
index 25e3e4b..5235015 100644
--- a/src/app/about/page.tsx
+++ b/src/app/about/page.tsx
@@ -30,11 +30,9 @@ export default function AboutPage() {
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "Pricing", id: "/pricing" },
- { name: "Dashboard", id: "/dashboard" },
{ name: "About", id: "/about" },
]}
button={{ text: "Sign In", href: "/login" }}
- className="fixed top-6 left-0 right-0 z-50 flex justify-center"
/>
@@ -43,17 +41,13 @@ export default function AboutPage() {
@@ -59,7 +58,7 @@ export default function HomePage() {
background={{ variant: "sparkles-gradient" }}
buttons={[
{ text: "Start Shopping", href: "/products" },
- { text: "Learn More", href: "/about" },
+ { text: "Learn More", href: "#about" },
]}
buttonAnimation="slide-up"
ariaLabel="Hero section"
@@ -81,16 +80,13 @@ export default function HomePage() {
gridVariant="three-columns-all-equal-width"
products={[
{
- id: "prod-1", name: "Premium Wireless Headphones", price: "$79.99", imageSrc:
- "http://img.b2bpic.net/free-photo/black-friday-discount-composition_23-2147696417.jpg", imageAlt: "Premium Wireless Headphones", initialQuantity: 1,
+ id: "prod-1", name: "Premium Wireless Headphones", price: "$79.99", imageSrc: "http://img.b2bpic.net/free-photo/black-friday-discount-composition_23-2147696417.jpg", imageAlt: "Premium Wireless Headphones", initialQuantity: 1,
},
{
- id: "prod-2", name: "Ultra-Slim Laptop Stand", price: "$34.99", imageSrc:
- "http://img.b2bpic.net/free-photo/composition-clothes-accessories-suitcase_23-2149064271.jpg", imageAlt: "Ultra-Slim Laptop Stand", initialQuantity: 1,
+ id: "prod-2", name: "Ultra-Slim Laptop Stand", price: "$34.99", imageSrc: "http://img.b2bpic.net/free-photo/composition-clothes-accessories-suitcase_23-2149064271.jpg", imageAlt: "Ultra-Slim Laptop Stand", initialQuantity: 1,
},
{
- id: "prod-3", name: "Portable USB-C Charger", price: "$49.99", imageSrc:
- "http://img.b2bpic.net/free-photo/containers-liquid-soap-shampoo-with-dispenser-is-sold-supermarket_169016-49638.jpg", imageAlt: "Portable USB-C Charger", initialQuantity: 1,
+ id: "prod-3", name: "Portable USB-C Charger", price: "$49.99", imageSrc: "http://img.b2bpic.net/free-photo/containers-liquid-soap-shampoo-with-dispenser-is-sold-supermarket_169016-49638.jpg", imageAlt: "Portable USB-C Charger", initialQuantity: 1,
},
]}
ariaLabel="Featured products section"
@@ -102,17 +98,13 @@ export default function HomePage() {
+ {/* Newsletter Section */}
+
+
+
+
{/* Footer */}
@@ -93,23 +91,17 @@ export default function PricingPage() {
animationType="smooth"
faqs={[
{
- id: "faq-1", title: "Can I upgrade or downgrade my plan anytime?", content:
- "Yes, you can upgrade or downgrade your membership plan at any time. Changes take effect on your next billing cycle. If you upgrade, you'll be charged a prorated amount. Downgrades are processed immediately."},
+ id: "faq-1", title: "Can I upgrade or downgrade my plan anytime?", content: "Yes, you can upgrade or downgrade your membership plan at any time. Changes take effect on your next billing cycle. If you upgrade, you'll be charged a prorated amount. Downgrades are processed immediately."},
{
- id: "faq-2", title: "What payment methods do you accept?", content:
- "We accept all major credit cards (Visa, MasterCard, American Express), PayPal, Apple Pay, and Google Pay. All payments are processed securely through industry-standard encryption."},
+ id: "faq-2", title: "What payment methods do you accept?", content: "We accept all major credit cards (Visa, MasterCard, American Express), PayPal, Apple Pay, and Google Pay. All payments are processed securely through industry-standard encryption."},
{
- id: "faq-3", title: "Is there a contract or commitment?", content:
- "No contracts or long-term commitments. You can cancel your membership at any time with no penalties or hidden fees. Cancel directly from your account settings."},
+ id: "faq-3", title: "Is there a contract or commitment?", content: "No contracts or long-term commitments. You can cancel your membership at any time with no penalties or hidden fees. Cancel directly from your account settings."},
{
- id: "faq-4", title: "Do you offer discounts for annual billing?", content:
- "Yes, prepay for a full year and save 15% on any membership plan. Annual plans auto-renew yearly, and you can manage billing in your account dashboard."},
+ id: "faq-4", title: "Do you offer discounts for annual billing?", content: "Yes, prepay for a full year and save 15% on any membership plan. Annual plans auto-renew yearly, and you can manage billing in your account dashboard."},
{
- id: "faq-5", title: "What happens if I cancel my membership?", content:
- "Your membership benefits end immediately after cancellation. You'll retain access to basic features, but lose fast shipping, exclusive deals, and priority support until you resubscribe."},
+ id: "faq-5", title: "What happens if I cancel my membership?", content: "Your membership benefits end immediately after cancellation. You'll retain access to basic features, but lose fast shipping, exclusive deals, and priority support until you resubscribe."},
{
- id: "faq-6", title: "Are there family or group discounts?", content:
- "Yes, family plans for up to 4 members are available at $15.99/mo. Business Plus plans include volume discounts for organizations with 10+ team members."},
+ id: "faq-6", title: "Are there family or group discounts?", content: "Yes, family plans for up to 4 members are available at $15.99/mo. Business Plus plans include volume discounts for organizations with 10+ team members."},
]}
ariaLabel="Pricing FAQ section"
/>
diff --git a/src/app/products/page.tsx b/src/app/products/page.tsx
index d6ca985..624910d 100644
--- a/src/app/products/page.tsx
+++ b/src/app/products/page.tsx
@@ -29,11 +29,9 @@ export default function ProductsPage() {
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "Pricing", id: "/pricing" },
- { name: "Dashboard", id: "/dashboard" },
{ name: "About", id: "/about" },
]}
button={{ text: "Sign In", href: "/login" }}
- className="fixed top-6 left-0 right-0 z-50 flex justify-center"
/>
@@ -52,28 +50,22 @@ export default function ProductsPage() {
gridVariant="bento-grid"
products={[
{
- id: "prod-1", name: "Premium Wireless Headphones", price: "$79.99", imageSrc:
- "http://img.b2bpic.net/free-photo/black-friday-discount-composition_23-2147696417.jpg", imageAlt: "Premium Wireless Headphones", initialQuantity: 1,
+ id: "prod-1", name: "Premium Wireless Headphones", price: "$79.99", imageSrc: "http://img.b2bpic.net/free-photo/black-friday-discount-composition_23-2147696417.jpg", imageAlt: "Premium Wireless Headphones", initialQuantity: 1,
},
{
- id: "prod-2", name: "Ultra-Slim Laptop Stand", price: "$34.99", imageSrc:
- "http://img.b2bpic.net/free-photo/composition-clothes-accessories-suitcase_23-2149064271.jpg", imageAlt: "Ultra-Slim Laptop Stand", initialQuantity: 1,
+ id: "prod-2", name: "Ultra-Slim Laptop Stand", price: "$34.99", imageSrc: "http://img.b2bpic.net/free-photo/composition-clothes-accessories-suitcase_23-2149064271.jpg", imageAlt: "Ultra-Slim Laptop Stand", initialQuantity: 1,
},
{
- id: "prod-3", name: "Portable USB-C Charger", price: "$49.99", imageSrc:
- "http://img.b2bpic.net/free-photo/containers-liquid-soap-shampoo-with-dispenser-is-sold-supermarket_169016-49638.jpg", imageAlt: "Portable USB-C Charger", initialQuantity: 1,
+ id: "prod-3", name: "Portable USB-C Charger", price: "$49.99", imageSrc: "http://img.b2bpic.net/free-photo/containers-liquid-soap-shampoo-with-dispenser-is-sold-supermarket_169016-49638.jpg", imageAlt: "Portable USB-C Charger", initialQuantity: 1,
},
{
- id: "prod-4", name: "Ergonomic Wireless Mouse", price: "$39.99", imageSrc:
- "http://img.b2bpic.net/free-photo/black-friday-discount-composition_23-2147696417.jpg", imageAlt: "Ergonomic Wireless Mouse", initialQuantity: 1,
+ id: "prod-4", name: "Ergonomic Wireless Mouse", price: "$39.99", imageSrc: "http://img.b2bpic.net/free-photo/black-friday-discount-composition_23-2147696417.jpg", imageAlt: "Ergonomic Wireless Mouse", initialQuantity: 1,
},
{
- id: "prod-5", name: "Crystal Clear Phone Case", price: "$24.99", imageSrc:
- "http://img.b2bpic.net/free-photo/composition-clothes-accessories-suitcase_23-2149064271.jpg", imageAlt: "Crystal Clear Phone Case", initialQuantity: 1,
+ id: "prod-5", name: "Crystal Clear Phone Case", price: "$24.99", imageSrc: "http://img.b2bpic.net/free-photo/composition-clothes-accessories-suitcase_23-2149064271.jpg", imageAlt: "Crystal Clear Phone Case", initialQuantity: 1,
},
{
- id: "prod-6", name: "Advanced Screen Protector", price: "$19.99", imageSrc:
- "http://img.b2bpic.net/free-photo/containers-liquid-soap-shampoo-with-dispenser-is-sold-supermarket_169016-49638.jpg", imageAlt: "Advanced Screen Protector", initialQuantity: 1,
+ id: "prod-6", name: "Advanced Screen Protector", price: "$19.99", imageSrc: "http://img.b2bpic.net/free-photo/containers-liquid-soap-shampoo-with-dispenser-is-sold-supermarket_169016-49638.jpg", imageAlt: "Advanced Screen Protector", initialQuantity: 1,
},
]}
ariaLabel="All products section"
@@ -93,23 +85,17 @@ export default function ProductsPage() {
animationType="smooth"
faqs={[
{
- id: "faq-1", title: "What warranty do products come with?", content:
- "All our products come with a minimum 1-year manufacturer warranty covering defects in materials and workmanship. Premium products may include extended warranty options up to 3 years."},
+ id: "faq-1", title: "What warranty do products come with?", content: "All our products come with a minimum 1-year manufacturer warranty covering defects in materials and workmanship. Premium products may include extended warranty options up to 3 years."},
{
- id: "faq-2", title: "Can I return a product if I'm not satisfied?", content:
- "Yes, we offer a 30-day satisfaction guarantee on all products. If you're not completely happy, return it in original condition for a full refund or exchange."},
+ id: "faq-2", title: "Can I return a product if I'm not satisfied?", content: "Yes, we offer a 30-day satisfaction guarantee on all products. If you're not completely happy, return it in original condition for a full refund or exchange."},
{
- id: "faq-3", title: "Are the product specifications accurate?", content:
- "All product specifications are verified and accurate as listed. We update our catalog regularly with the latest product information from manufacturers."},
+ id: "faq-3", title: "Are the product specifications accurate?", content: "All product specifications are verified and accurate as listed. We update our catalog regularly with the latest product information from manufacturers."},
{
- id: "faq-4", title: "Do you offer bulk purchase discounts?", content:
- "Yes, bulk discounts are available for orders of 10+ items. Contact our sales team or use the bulk order form to get a customized quote."},
+ id: "faq-4", title: "Do you offer bulk purchase discounts?", content: "Yes, bulk discounts are available for orders of 10+ items. Contact our sales team or use the bulk order form to get a customized quote."},
{
- id: "faq-5", title: "How do I know if a product is in stock?", content:
- "Stock status is displayed on each product page. Items marked 'In Stock' ship within 1-2 business days. Pre-order items show expected availability dates."},
+ id: "faq-5", title: "How do I know if a product is in stock?", content: "Stock status is displayed on each product page. Items marked 'In Stock' ship within 1-2 business days. Pre-order items show expected availability dates."},
{
- id: "faq-6", title: "Can I compare products before purchasing?", content:
- "Yes, you can add multiple products to your comparison list to view features, prices, and specifications side-by-side. This helps you make informed purchasing decisions."},
+ id: "faq-6", title: "Can I compare products before purchasing?", content: "Yes, you can add multiple products to your comparison list to view features, prices, and specifications side-by-side. This helps you make informed purchasing decisions."},
]}
ariaLabel="Product FAQ section"
/>