116 lines
5.6 KiB
TypeScript
116 lines
5.6 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import Link from "next/link";
|
|
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
|
import ContactText from "@/components/sections/contact/ContactText";
|
|
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
|
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
|
|
|
export default function ContactPage() {
|
|
const navItems = [
|
|
{ name: "Features", id: "features" },
|
|
{ name: "Courses", id: "courses" },
|
|
{ name: "Pricing", id: "pricing" },
|
|
{ name: "Community", id: "community" },
|
|
{ name: "Dashboard", id: "https://app.eldorbek.dev" },
|
|
];
|
|
|
|
const footerColumns = [
|
|
{
|
|
title: "Product", items: [
|
|
{ label: "Courses", href: "/courses" },
|
|
{ label: "Pricing", href: "/pricing" },
|
|
{ label: "Features", href: "#features" },
|
|
{ label: "Community", href: "/community" },
|
|
{ label: "Dashboard", href: "/dashboard" },
|
|
],
|
|
},
|
|
{
|
|
title: "Company", items: [
|
|
{ label: "About Us", href: "/about" },
|
|
{ label: "Blog", href: "/blog" },
|
|
{ label: "Careers", href: "/careers" },
|
|
{ label: "Contact", href: "/contact" },
|
|
{ label: "Status", href: "https://status.eldorbek.dev" },
|
|
],
|
|
},
|
|
{
|
|
title: "Legal", items: [
|
|
{ label: "Privacy Policy", href: "/privacy" },
|
|
{ label: "Terms of Service", href: "/terms" },
|
|
{ label: "Cookie Policy", href: "/cookies" },
|
|
{ label: "Security", href: "/security" },
|
|
{ label: "Refund Policy", href: "/refunds" },
|
|
],
|
|
},
|
|
];
|
|
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="directional-hover"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="pill"
|
|
contentWidth="mediumSmall"
|
|
sizing="medium"
|
|
background="circleGradient"
|
|
cardStyle="gradient-radial"
|
|
primaryButtonStyle="diagonal-gradient"
|
|
secondaryButtonStyle="solid"
|
|
headingFontWeight="normal"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarStyleApple brandName="Eldorbek" navItems={navItems} />
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact" className="py-20">
|
|
<ContactText
|
|
text="Have questions about our platform, courses, or community? We're here to help. Get in touch with our team and we'll respond within 24 hours."
|
|
animationType="entrance-slide"
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
buttons={[
|
|
{ text: "Send Email", href: "mailto:support@eldorbek.dev" },
|
|
{ text: "Schedule Demo", href: "/demo" },
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq" className="py-24 bg-card/30">
|
|
<FaqSplitMedia
|
|
title="Frequently Asked Questions"
|
|
description="Everything you need to know about Eldorbek"
|
|
tag="Help Center"
|
|
textboxLayout="default"
|
|
useInvertedBackground={false}
|
|
mediaPosition="left"
|
|
mediaAnimation="slide-up"
|
|
faqsAnimation="slide-up"
|
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AYxOIZzJuABt1grsLGzMHdVZpm/a-modern-developer-workspace-showing-lap-1772783582132-d4c17e07.png"
|
|
imageAlt="Support and Help"
|
|
faqs={[
|
|
{
|
|
id: "1", title: "What payment methods do you accept?", content: "We support Stripe, PayPal, Click, and Payme for maximum convenience. All payments are processed securely with industry-standard encryption. We also offer monthly and annual subscription plans with flexible billing options."},
|
|
{
|
|
id: "2", title: "Can I become an instructor and sell my own courses?", content: "Absolutely! We have an instructor program where you can create and sell courses. We provide course creation tools, student management features, and handle payment processing. You earn 70% of course revenue while we take 30% commission."},
|
|
{
|
|
id: "3", title: "Are there any refund guarantees?", content: "Yes, we offer a 30-day money-back guarantee on all course purchases. If you're not satisfied with your purchase, contact our support team and we'll process a full refund with no questions asked."},
|
|
{
|
|
id: "4", title: "Is the platform available on mobile?", content: "Yes! Eldorbek is fully responsive and optimized for mobile devices. We also have native iOS and Android apps for seamless learning on-the-go with offline viewing capabilities."},
|
|
{
|
|
id: "5", title: "How does the community feature work?", content: "Our community includes live chat, discussion forums, direct messaging, and code review sessions. You can connect with other developers, ask questions, share projects, and get feedback from experienced professionals."},
|
|
{
|
|
id: "6", title: "Is there a free tier?", content: "Yes! Our Starter plan is completely free. You get access to 5 free courses, basic portfolio building, community forums, and weekly newsletters. Upgrade anytime to unlock unlimited content and premium features."},
|
|
]}
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterBaseReveal
|
|
columns={footerColumns}
|
|
copyrightText="© 2025 Eldorbek Developer. All rights reserved. | Built by developers, for developers."
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |