Update src/app/reviews/page.tsx

This commit is contained in:
2026-03-12 13:40:24 +00:00
parent 148b7784ee
commit 652d100956

View File

@@ -12,25 +12,24 @@ import { Sparkles } from "lucide-react";
export default function ReviewsPage() {
const navItems = [
{ name: "Home", id: "/" },
{ name: "Products", id: "/products" },
{ name: "Reviews", id: "/reviews" },
{ name: "Guides", id: "guides" },
{ name: "Blog", id: "blog" },
{ name: "Contact", id: "contact" },
{ name: "Guides", id: "/guides" },
{ name: "Blog", id: "/blog" },
{ name: "Contact", id: "/contact" },
];
const footerColumns = [
{
title: "Discover",
items: [
title: "Discover", items: [
{ label: "Product Reviews", href: "/reviews" },
{ label: "Beauty Guides", href: "guides" },
{ label: "Blog Articles", href: "blog" },
{ label: "Latest Trends", href: "blog" },
{ label: "Beauty Guides", href: "/guides" },
{ label: "Blog Articles", href: "/blog" },
{ label: "Latest Trends", href: "/blog" },
],
},
{
title: "Categories",
items: [
title: "Categories", items: [
{ label: "Skincare", href: "#" },
{ label: "Makeup", href: "#" },
{ label: "Lip Care", href: "#" },
@@ -38,17 +37,15 @@ export default function ReviewsPage() {
],
},
{
title: "Company",
items: [
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Contact", href: "contact" },
{ label: "Contact", href: "/contact" },
{ label: "Advertise", href: "#" },
{ label: "Affiliate Program", href: "#" },
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Disclosure", href: "#" },
@@ -73,7 +70,7 @@ export default function ReviewsPage() {
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={navItems}
button={{ text: "Shop Now", href: "/reviews" }}
button={{ text: "Shop Now", href: "/products" }}
brandName="Aura Hub Finds"
/>
</div>
@@ -85,21 +82,15 @@ export default function ReviewsPage() {
background={{ variant: "plain" }}
avatars={[
{
src: "http://img.b2bpic.net/free-photo/side-view-beautiful-woman-with-folded-arms-looking-camera_23-2147876783.jpg",
alt: "Reviewer 1",
},
src: "http://img.b2bpic.net/free-photo/side-view-beautiful-woman-with-folded-arms-looking-camera_23-2147876783.jpg", alt: "Reviewer 1"},
{
src: "http://img.b2bpic.net/free-photo/close-up-inside-portrait-romantic-pretty-girl-with-blond-hairstyle-is-sitting-near-window-smiling_291650-2077.jpg",
alt: "Reviewer 2",
},
src: "http://img.b2bpic.net/free-photo/close-up-inside-portrait-romantic-pretty-girl-with-blond-hairstyle-is-sitting-near-window-smiling_291650-2077.jpg", alt: "Reviewer 2"},
{
src: "http://img.b2bpic.net/free-photo/smiley-woman-posing-her-home_23-2148708980.jpg",
alt: "Reviewer 3",
},
src: "http://img.b2bpic.net/free-photo/smiley-woman-posing-her-home_23-2148708980.jpg", alt: "Reviewer 3"},
]}
avatarText="Tested by 10,000+ beauty enthusiasts"
buttons={[
{ text: "Shop Top Picks", href: "#products" },
{ text: "Shop Top Picks", href: "/products" },
{ text: "Back to Home", href: "/" },
]}
buttonAnimation="slide-up"
@@ -119,31 +110,13 @@ export default function ReviewsPage() {
animationType="slide-up"
products={[
{
id: "1",
name: "Hydrating Facial Serum",
price: "$45.99",
variant: "Moisturizing Vitamin C",
imageSrc: "http://img.b2bpic.net/free-photo/top-view-natural-cosmetics-concept_23-2148578622.jpg?_wi=2",
imageAlt: "Luxury hydrating facial serum with golden packaging",
isFavorited: false,
id: "1", name: "Hydrating Facial Serum", price: "$45.99", variant: "Moisturizing Vitamin C", imageSrc: "http://img.b2bpic.net/free-photo/top-view-natural-cosmetics-concept_23-2148578622.jpg?_wi=2", imageAlt: "Luxury hydrating facial serum with golden packaging", isFavorited: false,
},
{
id: "2",
name: "Nourishing Face Mask",
price: "$38.50",
variant: "Detox Sheet Mask",
imageSrc: "http://img.b2bpic.net/free-photo/natural-cosmetics-concept_23-2148565322.jpg?_wi=2",
imageAlt: "Premium nourishing face mask in elegant jar",
isFavorited: false,
id: "2", name: "Nourishing Face Mask", price: "$38.50", variant: "Detox Sheet Mask", imageSrc: "http://img.b2bpic.net/free-photo/natural-cosmetics-concept_23-2148565322.jpg?_wi=2", imageAlt: "Premium nourishing face mask in elegant jar", isFavorited: false,
},
{
id: "3",
name: "Eyeshadow Palette Pro",
price: "$52.00",
variant: "Warm Tones 12 Colors",
imageSrc: "http://img.b2bpic.net/free-photo/skincare-essentials-towel-mirrored-tray_23-2152029120.jpg?_wi=2",
imageAlt: "Professional eyeshadow palette with rich warm tones",
isFavorited: false,
id: "3", name: "Eyeshadow Palette Pro", price: "$52.00", variant: "Warm Tones 12 Colors", imageSrc: "http://img.b2bpic.net/free-photo/skincare-essentials-towel-mirrored-tray_23-2152029120.jpg?_wi=2", imageAlt: "Professional eyeshadow palette with rich warm tones", isFavorited: false,
},
]}
buttons={[{ text: "Discover More", href: "/reviews" }]}
@@ -173,4 +146,4 @@ export default function ReviewsPage() {
</div>
</ThemeProvider>
);
}
}