Add src/app/help/page.tsx

This commit is contained in:
2026-05-13 10:57:56 +00:00
parent d96d177fae
commit 854a12f081

49
src/app/help/page.tsx Normal file
View File

@@ -0,0 +1,49 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import LegalSection from '@/components/legal/LegalSection';
export default function HelpPage() {
return (
<ThemeProvider>
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Collections", id: "/collections" },
{ name: "Gallery", id: "/gallery" },
{ name: "Custom Orders", id: "/custom" },
{ name: "About", id: "/about" },
{ name: "Contact", id: "/contact" },
{ name: "Help", id: "/help" }
]}
brandName="EverBloom Bridal"
/>
<LegalSection
layout="page"
title="How to Manage Your Experience"
sections={[
{
heading: "Uploading Images", content: { type: "paragraph", text: "You can update your floral gallery by selecting the product or testimonial section in our editor. Simply upload your high-resolution image files directly to the image source field in the component settings." }
},
{
heading: "Editing Prices", content: { type: "paragraph", text: "Prices can be managed within the Pricing or Product section settings. Locate the 'plans' or 'products' array, modify the 'price' field for each item, and save changes." }
},
{
heading: "Managing Content", content: { type: "paragraph", text: "All text content, including titles, descriptions, and feature lists, can be edited directly in the component prop fields within the editor interface. Changes reflect instantly on your site." }
}
]}
/>
<FooterLogoEmphasis
logoText="EverBloom Bridal"
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Collections", href: "/collections" }] }
]}
/>
</ReactLenis>
</ThemeProvider>
);
}