Add src/app/help/page.tsx

This commit is contained in:
2026-05-13 11:18:55 +00:00
parent 370cdec046
commit 9813e6d7b7

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

@@ -0,0 +1,65 @@
"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
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="smallMedium"
sizing="largeSizeMediumTitles"
background="fluid"
cardStyle="solid"
primaryButtonStyle="diagonal-gradient"
secondaryButtonStyle="layered"
headingFontWeight="light"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<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"
/>
</div>
<div id="help-content" data-section="help-content">
<LegalSection
layout="page"
title="Help Center"
subtitle="Guides and support for managing your florals"
sections={[
{ heading: "Uploading Images", content: { type: "numbered-list", items: ["Go to your gallery dashboard.", "Click the 'Upload' button.", "Select your high-resolution images and confirm."] } },
{ heading: "Updating Prices", content: { type: "numbered-list", items: ["Navigate to the 'Products' section.", "Select the item you wish to modify.", "Update the price field and save changes."] } },
{ heading: "Managing Gallery Content", content: { type: "numbered-list", items: ["Visit the gallery management page.", "Drag and drop images to reorder.", "Use the toggle switches to display or hide specific items."] } }
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoEmphasis
logoText="EverBloom Bridal"
columns={[
{ items: [{ label: "Home", href: "/" }, { label: "Collections", href: "/collections" }, { label: "Gallery", href: "/gallery" }] },
{ items: [{ label: "Custom Orders", href: "/custom" }, { label: "About", href: "/about" }, { label: "Contact", href: "/contact" }] },
{ items: [{ label: "Instagram", href: "https://instagram.com" }, { label: "Help", href: "/help" }] }
]}
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}