Switch to version 1: remove src/app/help/page.tsx
This commit is contained in:
@@ -1,61 +0,0 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
|
||||
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||
|
||||
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: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Help", id: "/help" },
|
||||
]}
|
||||
brandName="EverBloom Bridal"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Help & Resources"
|
||||
sections={[
|
||||
{
|
||||
heading: "Getting Started", content: { type: "paragraph", text: "Welcome to our help center. Find guides to manage your bridal website." }
|
||||
},
|
||||
{
|
||||
heading: "Support", content: { type: "list", items: ["Contact support", "Read FAQs"] }
|
||||
},
|
||||
{
|
||||
heading: "FAQ", content: { type: "list", items: ["Common questions about image uploads", "Pricing updates"] }
|
||||
}
|
||||
]}
|
||||
/>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoEmphasis
|
||||
columns={[]}
|
||||
logoText="EverBloom Bridal"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user