Files
f08f50e8-181b-4bbf-bced-641…/src/app/contact/page.tsx

131 lines
4.6 KiB
TypeScript

"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqSplitText from '@/components/sections/faq/FaqSplitText';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
export default function LandingPage() {
return (
<ThemeProvider
defaultButtonVariant="elastic-effect"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="small"
sizing="largeSmallSizeMediumTitles"
background="circleGradient"
cardStyle="soft-shadow"
primaryButtonStyle="shadow"
secondaryButtonStyle="layered"
headingFontWeight="medium"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
navItems={[
{
name: "Home", id: "/"},
{
name: "Categories", id: "/categories"},
{
name: "Trending", id: "/trending"},
{
name: "Authors", id: "/authors"},
{
name: "About", id: "/about"},
{
name: "Contact", id: "/contact"},
{
name: "Sign In / Sign Up", id: "/auth"},
]}
logoSrc="http://img.b2bpic.net/free-vector/vintage-classic-theatre-emblems-set_1284-39339.jpg"
logoAlt="Alish Novel Logo"
brandName="Alish Novel"
/>
</div>
<div id="contact-form-section" data-section="contact-form-section">
<ContactText
useInvertedBackground={false}
background={{
variant: "downward-rays-animated"}}
text="Have a question or feedback? We'd love to hear from you. Fill out the form below or connect with us on social media."
buttons={[
{
text: "Send Message", onClick: () => alert('Message Sent!')
},
{
text: "Follow Us", href: "https://twitter.com/alishnovel"},
]}
/>
</div>
<div id="contact-faq" data-section="contact-faq">
<FaqSplitText
useInvertedBackground={false}
faqs={[
{
id: "contact-faq-1", title: "How do I report a bug or issue?", content: "Please use the contact form on this page and provide as much detail as possible, including screenshots if applicable."},
{
id: "contact-faq-2", title: "Can I suggest a novel to be added?", content: "We welcome suggestions! Reach out via the contact form with your recommendations, and our content team will review them."},
{
id: "contact-faq-3", title: "What are your operating hours for support?", content: "Our support team typically responds within 24-48 hours during business days (Monday-Friday)."},
]}
sideTitle="Frequently Asked Questions"
sideDescription="Find quick answers to common inquiries about Alish Novel. For more specific issues, please use our contact form."
faqsAnimation="slide-up"
textPosition="left"
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseCard
logoText="Alish Novel"
columns={[
{
title: "Explore", items: [
{
label: "Home", href: "/"},
{
label: "Categories", href: "/categories"},
{
label: "Trending", href: "/trending"},
{
label: "Authors", href: "/authors"},
],
},
{
title: "Company", items: [
{
label: "About Us", href: "/about"},
{
label: "Contact", href: "/contact"},
{
label: "Careers", href: "#"},
{
label: "Terms of Service", href: "#"},
],
},
{
title: "Connect", items: [
{
label: "Facebook", href: "https://facebook.com"},
{
label: "Twitter", href: "https://twitter.com"},
{
label: "Instagram", href: "https://instagram.com"},
{
label: "LinkedIn", href: "https://linkedin.com"},
],
},
]}
copyrightText="© 2024 Alish Novel. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}