Update src/app/contact/page.tsx

This commit is contained in:
2026-03-04 04:29:32 +00:00
parent b2e380c0ed
commit b7e4bd1ffd

View File

@@ -19,16 +19,16 @@ export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="directional-hover"
defaultButtonVariant="text-shift"
defaultTextAnimation="entrance-slide"
borderRadius="soft"
borderRadius="rounded"
contentWidth="medium"
sizing="mediumSizeLargeTitles"
background="aurora"
cardStyle="gradient-mesh"
primaryButtonStyle="diagonal-gradient"
sizing="medium"
background="none"
cardStyle="solid"
primaryButtonStyle="flat"
secondaryButtonStyle="solid"
headingFontWeight="medium"
headingFontWeight="semibold"
>
<div id="nav" data-section="nav">
<NavbarStyleFullscreen
@@ -44,17 +44,17 @@ export default function ContactPage() {
title="Get in Touch"
description="Have questions about Wacey? Our support team is here to help. Contact us for pricing, technical support, or partnership opportunities."
tag="We're Here to Help"
tagAnimation="slide-up"
tagAnimation="none"
imageSrc="http://img.b2bpic.net/free-photo/wireless-technology-could-be-very-useful_329181-14220.jpg?_wi=4"
imageAlt="Contact us interface"
textPosition="center"
showBlur={true}
showDimOverlay={true}
showBlur={false}
showDimOverlay={false}
buttons={[
{ text: "Email Us", href: "mailto:hello@wacey.com" },
{ text: "Schedule Call", href: "/contact" },
]}
buttonAnimation="slide-up"
buttonAnimation="none"
/>
</div>
@@ -63,12 +63,12 @@ export default function ContactPage() {
tag="Newsletter"
title="Stay Updated"
description="Get the latest updates on new features, resources, and educational insights delivered to your inbox"
tagAnimation="slide-up"
background={{ variant: "radial-gradient" }}
tagAnimation="none"
background={{ variant: "plain" }}
useInvertedBackground={false}
imageSrc="http://img.b2bpic.net/free-vector/business-deal_52683-6807.jpg"
imageAlt="Newsletter signup illustration"
mediaAnimation="slide-up"
mediaAnimation="none"
mediaPosition="right"
inputPlaceholder="Enter your email"
buttonText="Subscribe"
@@ -81,29 +81,20 @@ export default function ContactPage() {
<FaqSplitText
faqs={[
{
id: "1",
title: "How do I add new subjects to my platform?",
content:
"Administrators can add new subject channels through the admin dashboard. Navigate to Content Management, select 'Add Subject Channel', and configure the subject name, description, and resource categories. New channels can be made available immediately or scheduled for future release.",
},
id: "1", title: "How do I add new subjects to my platform?", content:
"Administrators can add new subject channels through the admin dashboard. Navigate to Content Management, select 'Add Subject Channel', and configure the subject name, description, and resource categories. New channels can be made available immediately or scheduled for future release."},
{
id: "2",
title: "Can I lock content behind a paywall?",
content:
"Yes, all resources within Wacey can be restricted using our flexible paywall system. Set access levels per resource, term, or entire subject channel. Premium content can be restricted to paid subscribers while keeping foundational materials free for all users.",
},
id: "2", title: "Can I lock content behind a paywall?", content:
"Yes, all resources within Wacey can be restricted using our flexible paywall system. Set access levels per resource, term, or entire subject channel. Premium content can be restricted to paid subscribers while keeping foundational materials free for all users."},
{
id: "3",
title: "How is student progress tracked?",
content:
"Wacey provides real-time analytics dashboards showing completion percentages, score growth charts, and achievement metrics. Track progress by individual student, class, subject, or term. Export detailed reports for parent-teacher conferences and curriculum planning.",
},
id: "3", title: "How is student progress tracked?", content:
"Wacey provides real-time analytics dashboards showing completion percentages, score growth charts, and achievement metrics. Track progress by individual student, class, subject, or term. Export detailed reports for parent-teacher conferences and curriculum planning."},
]}
sideTitle="Frequently Asked Questions"
sideDescription="Everything you need to know about getting started with Wacey"
textPosition="left"
useInvertedBackground={false}
faqsAnimation="slide-up"
faqsAnimation="none"
/>
</div>
@@ -114,22 +105,16 @@ export default function ContactPage() {
socialLinks={[
{
icon: Twitter,
href: "https://twitter.com/wacey",
ariaLabel: "Follow us on Twitter",
},
href: "https://twitter.com/wacey", ariaLabel: "Follow us on Twitter"},
{
icon: Linkedin,
href: "https://linkedin.com/company/wacey",
ariaLabel: "Connect on LinkedIn",
},
href: "https://linkedin.com/company/wacey", ariaLabel: "Connect on LinkedIn"},
{
icon: Instagram,
href: "https://instagram.com/wacey",
ariaLabel: "Follow us on Instagram",
},
href: "https://instagram.com/wacey", ariaLabel: "Follow us on Instagram"},
]}
/>
</div>
</ThemeProvider>
);
}
}