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 { 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 NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
import ContactText from '@/components/sections/contact/ContactText'; import ContactText from '@/components/sections/contact/ContactText';
import FooterBase from '@/components/sections/footer/FooterBase'; import FooterBase from '@/components/sections/footer/FooterBase';
@@ -32,8 +32,7 @@ export default function ContactPage() {
{ name: "Join Us", id: "#join" } { name: "Join Us", id: "#join" }
]} ]}
button={{ button={{
text: "Join Now", text: "Join Now", href: "#join"
href: "#join"
}} }}
navItemClassName="text-sm font-medium" navItemClassName="text-sm font-medium"
buttonClassName="px-6 py-2" buttonClassName="px-6 py-2"
@@ -92,24 +91,21 @@ export default function ContactPage() {
copyrightText="© 2025 Remember Book Club. All rights reserved." copyrightText="© 2025 Remember Book Club. All rights reserved."
columns={[ columns={[
{ {
title: "Community", title: "Community", items: [
items: [
{ label: "About Us", href: "/about" }, { label: "About Us", href: "/about" },
{ label: "Home", href: "/" }, { label: "Home", href: "/" },
{ label: "Members", href: "/" } { label: "Members", href: "/" }
] ]
}, },
{ {
title: "Resources", title: "Resources", items: [
items: [
{ label: "Book List", href: "/books" }, { label: "Book List", href: "/books" },
{ label: "Discussion Guides", href: "#" }, { label: "Discussion Guides", href: "#" },
{ label: "FAQ", href: "/" } { label: "FAQ", href: "/" }
] ]
}, },
{ {
title: "Contact", title: "Contact", items: [
items: [
{ label: "Join Now", href: "#join" }, { label: "Join Now", href: "#join" },
{ label: "General Info", href: "mailto:info@remember-bookclub.com" }, { label: "General Info", href: "mailto:info@remember-bookclub.com" },
{ label: "Events", href: "mailto:events@remember-bookclub.com" } { label: "Events", href: "mailto:events@remember-bookclub.com" }
@@ -123,4 +119,3 @@ export default function ContactPage() {
</ThemeProvider> </ThemeProvider>
); );
} }
]]>