Update src/app/contact/page.tsx

This commit is contained in:
2026-06-10 11:36:04 +00:00
parent dcdb91a242
commit e1c186dc48

View File

@@ -1,6 +1,6 @@
"use client"; "use client";
import { ThemeProvider } from "@/components/theme-provider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import TeamCardEleven from '@/components/sections/team/TeamCardEleven'; import TeamCardEleven from '@/components/sections/team/TeamCardEleven';
@@ -71,6 +71,7 @@ export default function Contact() {
termsText="By sending a message, you agree to our Privacy Policy and Terms of Service." termsText="By sending a message, you agree to our Privacy Policy and Terms of Service."
tagIcon={Mail} tagIcon={Mail}
background={{ variant: "radial-gradient" }} background={{ variant: "radial-gradient" }}
useInvertedBackground={false}
/> />
</div> </div>
<div id="team-contacts" data-section="team-contacts"> <div id="team-contacts" data-section="team-contacts">
@@ -80,6 +81,7 @@ export default function Contact() {
groups={[{ id: "1", groupTitle: "Leadership & Support", members: teamMembers }]} groups={[{ id: "1", groupTitle: "Leadership & Support", members: teamMembers }]}
animationType="slide-up" animationType="slide-up"
useInvertedBackground={false} useInvertedBackground={false}
textboxLayout="default"
/> />
</div> </div>
<FooterBase <FooterBase