142 lines
5.1 KiB
TypeScript
142 lines
5.1 KiB
TypeScript
"use client";
|
|
|
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
|
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
|
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
|
import FooterCard from "@/components/sections/footer/FooterCard";
|
|
import { Send, Twitter, Linkedin, Facebook, Youtube } from "lucide-react";
|
|
|
|
const navItems = [
|
|
{ name: "Home", id: "/" },
|
|
{ name: "About", id: "/about" },
|
|
{ name: "Programs", id: "/programs" },
|
|
{ name: "Resources", id: "/resources" },
|
|
{ name: "Contact", id: "/contact" },
|
|
];
|
|
|
|
const navItemsFormatted = navItems.map((item) => ({
|
|
name: item.name,
|
|
id: item.id,
|
|
}));
|
|
|
|
export default function ContactPage() {
|
|
return (
|
|
<ThemeProvider
|
|
defaultButtonVariant="hover-magnetic"
|
|
defaultTextAnimation="entrance-slide"
|
|
borderRadius="soft"
|
|
contentWidth="compact"
|
|
sizing="mediumSizeLargeTitles"
|
|
background="floatingGradient"
|
|
cardStyle="gradient-bordered"
|
|
primaryButtonStyle="gradient"
|
|
secondaryButtonStyle="radial-glow"
|
|
headingFontWeight="normal"
|
|
>
|
|
<div id="nav" data-section="nav">
|
|
<NavbarLayoutFloatingInline
|
|
brandName="The News Speed Institute"
|
|
navItems={navItemsFormatted}
|
|
button={{ text: "Apply Now", href: "/contact" }}
|
|
animateOnLoad={true}
|
|
/>
|
|
</div>
|
|
|
|
<div id="contact" data-section="contact">
|
|
<ContactCenter
|
|
tag="Get Started"
|
|
tagIcon={Send}
|
|
tagAnimation="slide-up"
|
|
title="Join Our Community of Journalists"
|
|
description="Subscribe to our newsletter for program updates, journalism tips, and industry insights. Be part of our growing community of aspiring and professional journalists."
|
|
background={{ variant: "plain" }}
|
|
useInvertedBackground={false}
|
|
inputPlaceholder="Enter your email address"
|
|
buttonText="Subscribe"
|
|
termsText="We respect your privacy and will only send journalism-related content. Unsubscribe anytime."
|
|
/>
|
|
</div>
|
|
|
|
<div id="faq" data-section="faq">
|
|
<FaqDouble
|
|
title="Contact & Support"
|
|
description="Find answers to questions about admissions, programs, and reaching our team."
|
|
tag="Help & Support"
|
|
tagAnimation="slide-up"
|
|
faqs={[
|
|
{
|
|
id: "1",
|
|
title: "How can I apply to your programs?",
|
|
content:
|
|
"You can apply through our website or contact our admissions office directly. Applications are reviewed on a rolling basis, and we typically respond within 2-3 weeks.",
|
|
},
|
|
{
|
|
id: "2",
|
|
title: "What is the application deadline?",
|
|
content:
|
|
"We accept applications year-round for rolling admissions. Early applications are encouraged to ensure program availability.",
|
|
},
|
|
{
|
|
id: "3",
|
|
title: "How do I contact the admissions office?",
|
|
content:
|
|
"Email: admissions@newsspeedinst.edu | Phone: +1 (555) 123-4567 | Office hours: Monday-Friday, 9AM-5PM EST",
|
|
},
|
|
{
|
|
id: "4",
|
|
title: "Can I visit the campus?",
|
|
content:
|
|
"Yes, we offer campus tours by appointment. Contact our admissions team to schedule a visit or join one of our open house events.",
|
|
},
|
|
{
|
|
id: "5",
|
|
title: "What is the tuition cost?",
|
|
content:
|
|
"Tuition varies by program and whether you choose full-time or part-time enrollment. Contact admissions for detailed pricing and financial aid information.",
|
|
},
|
|
{
|
|
id: "6",
|
|
title: "Do you offer distance learning options?",
|
|
content:
|
|
"We offer hybrid options for some programs combining online coursework with in-person practical training and workshops.",
|
|
},
|
|
]}
|
|
faqsAnimation="slide-up"
|
|
textboxLayout="default"
|
|
useInvertedBackground={true}
|
|
animationType="smooth"
|
|
/>
|
|
</div>
|
|
|
|
<div id="footer" data-section="footer">
|
|
<FooterCard
|
|
logoText="The News Speed Institute"
|
|
copyrightText="© 2025 The News Speed Institute. All rights reserved."
|
|
socialLinks={[
|
|
{
|
|
icon: Twitter,
|
|
href: "https://twitter.com/newsspeedinst",
|
|
ariaLabel: "Twitter",
|
|
},
|
|
{
|
|
icon: Linkedin,
|
|
href: "https://linkedin.com/company/newsspeedinstitute",
|
|
ariaLabel: "LinkedIn",
|
|
},
|
|
{
|
|
icon: Facebook,
|
|
href: "https://facebook.com/newsspeedinstitute",
|
|
ariaLabel: "Facebook",
|
|
},
|
|
{
|
|
icon: Youtube,
|
|
href: "https://youtube.com/@newsspeedinstitute",
|
|
ariaLabel: "YouTube",
|
|
},
|
|
]}
|
|
/>
|
|
</div>
|
|
</ThemeProvider>
|
|
);
|
|
} |