Add src/app/handover/page.tsx
This commit is contained in:
106
src/app/handover/page.tsx
Normal file
106
src/app/handover/page.tsx
Normal file
@@ -0,0 +1,106 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import LegalSection from '@/components/legal/LegalSection';
|
||||
|
||||
export default function HandoverPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
defaultTextAnimation="reveal-blur"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumLarge"
|
||||
sizing="largeSmallSizeMediumTitles"
|
||||
background="circleGradient"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="diagonal-gradient"
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
navItems={[
|
||||
{ name: "Home", id: "/" },
|
||||
{ name: "Services", id: "/services" },
|
||||
{ name: "Packages", id: "/packages" },
|
||||
{ name: "Contact", id: "/contact" },
|
||||
{ name: "Client Login", id: "/login" },
|
||||
{ name: "Handover", id: "/handover" }
|
||||
]}
|
||||
brandName="eXpand AD"
|
||||
button={{ text: "Get a Quote", href: "/contact" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="handover-documentation" data-section="handover-documentation">
|
||||
<LegalSection
|
||||
layout="page"
|
||||
title="Handover Documentation for eXpand AD"
|
||||
subtitle="Comprehensive guide for managing the eXpand AD website and backend operations."
|
||||
sections={[
|
||||
{
|
||||
heading: "Content Updates", content: [
|
||||
{ type: "paragraph", text: "This section details the process for updating content across the eXpand AD website, including text, images, and multimedia elements. Regular content audits and updates are crucial for maintaining relevance and engagement." },
|
||||
{ type: "numbered-list", items: ["Accessing the content management system (CMS) via the provided credentials.", "Navigating to specific pages or sections to edit their content.", "Uploading and managing media files such as images and videos.", "Reviewing and publishing changes to make them live on the website.", "Best practices for SEO-friendly content creation and optimization."]}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Package Modifications", content: [
|
||||
{ type: "paragraph", text: "Instructions for modifying existing service packages and adding new ones, ensuring all offerings are current and competitive. This includes updating descriptions, features, and pricing models."},
|
||||
{ type: "numbered-list", items: ["Locating the service packages configuration within the backend system.", "Updating package descriptions to reflect new features or changes in scope.", "Adjusting pricing structures for individual packages or bundles.", "Configuring the availability and visibility of packages on the website.", "Procedures for archiving or deprecating old packages."]}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Pricing Adjustments", content: [
|
||||
{ type: "paragraph", text: "Detailed procedures for making changes to service pricing, including applying discounts, managing promotions, and updating price tiers. Accurate pricing is key to revenue management."},
|
||||
{ type: "numbered-list", items: ["Identifying the relevant pricing configurations for different services.", "Implementing temporary or permanent discounts and promotional offers.", "Updating price points for various service tiers or subscription levels.", "Ensuring consistency in pricing across all platforms and documentation.", "Analyzing the impact of pricing changes on customer acquisition and retention."]}
|
||||
]
|
||||
},
|
||||
{
|
||||
heading: "Stripe Payment Management", content: [
|
||||
{ type: "paragraph", text: "An overview of the Stripe integration for payment processing, including monitoring transactions, handling refunds, and managing subscriptions. Proper payment management is vital for financial operations."},
|
||||
{ type: "numbered-list", items: ["Accessing the Stripe Dashboard for transaction monitoring and reporting.", "Processing refunds for customer payments in accordance with company policy.", "Managing customer subscriptions, including upgrades, downgrades, and cancellations.", "Reconciling Stripe transactions with internal accounting records.", "Troubleshooting common payment processing issues and fraud prevention measures."]}
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="eXpand AD"
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/#about" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Packages", href: "/packages" },
|
||||
{ label: "Contact", href: "/contact" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Resources", items: [
|
||||
{ label: "Client Login", href: "/login" },
|
||||
{ label: "FAQ", href: "/contact#faq" },
|
||||
{ label: "Blog", href: "/blog" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" },
|
||||
{ label: "Handover Docs", href: "/handover"}
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2024 eXpand AD. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user