Update src/app/page.tsx

This commit is contained in:
2026-05-30 21:11:52 +00:00
parent 89706bc95b
commit 34f72c3b36

View File

@@ -2,7 +2,6 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import ContactText from '@/components/sections/contact/ContactText';
import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
@@ -12,6 +11,7 @@ import ProductCardTwo from '@/components/sections/product/ProductCardTwo';
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import { Sparkles } from "lucide-react";
import ContactSplit from '@/components/sections/contact/ContactSplit';
export default function LandingPage() {
return (
@@ -201,17 +201,21 @@ export default function LandingPage() {
</div>
<div id="contact" data-section="contact">
<ContactText
<ContactSplit
useInvertedBackground={true}
background={{
variant: "radial-gradient"}}
text="Ready to Savor the Flavor? Order Your Meal Today!"
buttons={[
{
text: "Order Online", href: "#"},
{
text: "View Our Location", href: "#"},
]}
tag="Get in Touch"
title="Ready to Order? Connect with Us!"
description="Have a question or want to place a special order? Fill out the form below or reach out to us directly."
imageSrc="http://img.b2bpic.net/free-photo/close-up-waiter-writing-order_23-2149303507.jpg"
imageAlt="Waiter taking an order"
mediaAnimation="slide-up"
mediaPosition="right"
inputPlaceholder="Enter your email or message"
buttonText="Send Message"
termsText="By submitting, you agree to receive updates and special offers from Chitir Chicken."
onSubmit={(email) => console.log("Contact form submitted with email:", email)}
/>
</div>