Add src/app/help/page.tsx

This commit is contained in:
2026-04-07 03:21:28 +00:00
parent 376fb75267
commit dc4ba52143

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

@@ -0,0 +1,51 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import ContactText from '@/components/sections/contact/ContactText';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
export default function HelpPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
borderRadius="pill"
contentWidth="mediumSmall"
>
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Products", id: "/#products" },
{ name: "Help", id: "/help" },
]}
brandName="Aarav Faucets"
/>
<div className="pt-32 pb-20 px-6">
<h1 className="text-4xl font-bold mb-8">Customer Support</h1>
<div className="space-y-6">
<p className="text-lg">Need assistance with your installation or product inquiry? Our team is here to help.</p>
<div className="bg-card p-8 rounded-2xl shadow-sm border">
<h2 className="text-2xl font-semibold mb-4">Contact Us</h2>
<p className="mb-2"><strong>Phone:</strong> +91 987737491</p>
<p><strong>Email:</strong> aaravsharma0518@gmal.com</p>
</div>
</div>
</div>
<ContactText
text="Still have questions? Reach out anytime."
background={{ variant: "plain" }}
/>
<FooterLogoReveal
logoText="Aarav Faucets & Bath Fittings"
leftLink={{ text: "© 2024 Aarav", href: "#" }}
rightLink={{ text: "Privacy Policy", href: "#" }}
/>
</ReactLenis>
</ThemeProvider>
);
}