Update src/app/page.tsx

This commit is contained in:
2025-12-23 12:23:40 +00:00
parent d4a8016812
commit cdee1449e5

View File

@@ -9,6 +9,7 @@ import TeamCardSix from '@/components/sections/team/TeamCardSix';
import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive'; import TestimonialCardFive from '@/components/sections/testimonial/TestimonialCardFive';
import FaqBase from '@/components/sections/faq/FaqBase'; import FaqBase from '@/components/sections/faq/FaqBase';
import ContactInline from '@/components/sections/contact/ContactInline'; import ContactInline from '@/components/sections/contact/ContactInline';
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard'; import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
export default function LandingPage() { export default function LandingPage() {
@@ -258,11 +259,20 @@ export default function LandingPage() {
</div> </div>
<div id="contact" data-section="contact"> <div id="contact" data-section="contact">
<ContactInline <ContactSplitForm
text="Ready to transform your English skills?" title="Get in Touch"
inputPlaceholder="Enter your email address" description="We'd love to hear from you. Send us a message and we'll respond as soon as possible."
buttonText="Send" inputs={[
{ name: "name", type: "text", placeholder: "Your Name", required: true },
{ name: "email", type: "email", placeholder: "Your Email", required: true }
]}
textarea={{ name: "message", placeholder: "Type your message...", rows: 5, required: true }}
useInvertedBackground="noInvert" useInvertedBackground="noInvert"
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/gallery/uploaded-1766490824093-4zvastqq.jpg"
imageAlt="Red Room contact section"
mediaPosition="right"
buttonText="Send Message"
onSubmit={(data) => console.log(data)}
/> />
</div> </div>