Update src/app/contact/page.tsx

This commit is contained in:
2026-01-15 13:06:23 +00:00
parent 7f0fdc4e57
commit 844b13ceea

View File

@@ -1,8 +1,8 @@
<![CDATA[
"use client"
"use client";
import { Mail, Users, BookOpen } from 'lucide-react';
import { ThemeProvider } from '@/components/theme/ThemeProvider';
import Link from 'next/link';
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactText from '@/components/sections/contact/ContactText';
import FooterBase from '@/components/sections/footer/FooterBase';
@@ -32,8 +32,7 @@ export default function ContactPage() {
{ name: "Join Us", id: "#join" }
]}
button={{
text: "Join Now",
href: "#join"
text: "Join Now", href: "#join"
}}
navItemClassName="text-sm font-medium"
buttonClassName="px-6 py-2"
@@ -92,24 +91,21 @@ export default function ContactPage() {
copyrightText="© 2025 Remember Book Club. All rights reserved."
columns={[
{
title: "Community",
items: [
title: "Community", items: [
{ label: "About Us", href: "/about" },
{ label: "Home", href: "/" },
{ label: "Members", href: "/" }
]
},
{
title: "Resources",
items: [
title: "Resources", items: [
{ label: "Book List", href: "/books" },
{ label: "Discussion Guides", href: "#" },
{ label: "FAQ", href: "/" }
]
},
{
title: "Contact",
items: [
title: "Contact", items: [
{ label: "Join Now", href: "#join" },
{ label: "General Info", href: "mailto:info@remember-bookclub.com" },
{ label: "Events", href: "mailto:events@remember-bookclub.com" }
@@ -122,5 +118,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
]]>
}