Update src/app/page.tsx
This commit is contained in:
@@ -3,9 +3,9 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import ReactLenis from "lenis/react";
|
||||
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
||||
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
|
||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
||||
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import FooterBase from '@/components/sections/footer/FooterBase';
|
||||
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||
@@ -274,36 +274,54 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplitForm
|
||||
<ContactCTA
|
||||
useInvertedBackground={false}
|
||||
title="Get in Touch with EST"
|
||||
description="Reach out to us for fan inquiries, partnership opportunities, or general feedback. We're here to connect!"
|
||||
inputs={[
|
||||
title="Engage with EST Community"
|
||||
description="Whether it's a fan inquiry, partnership opportunity, or feedback, our team is ready to connect and build the future of Espérance together."
|
||||
tag="Connect with Us"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
buttons={[
|
||||
{
|
||||
name: "name", type: "text", placeholder: "Your Name", required: true},
|
||||
text: "Email Us", href: "mailto:contact@est.com"},
|
||||
{
|
||||
name: "email", type: "email", placeholder: "Your Email", required: true}
|
||||
text: "Join Our Fan Club", href: "#"},
|
||||
]}
|
||||
textarea={{
|
||||
name: "message", placeholder: "Your Message", rows: 4,
|
||||
required: true}}
|
||||
buttonText="Send Message"
|
||||
onSubmit={(data) => console.log(data)}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/football-player-jumping-with-ball_23-2149509428.jpg"
|
||||
imageAlt="Football player making a jump kick"
|
||||
mediaPosition="right"
|
||||
buttonAnimation="slide-up"
|
||||
background={{
|
||||
variant: "sparkles-gradient"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
<FooterBase
|
||||
logoSrc="http://img.b2bpic.net/free-vector/autumn-labels-collection_23-2147882334.jpg"
|
||||
logoAlt="EST Logo"
|
||||
logoText="EST: The Empire of Africa"
|
||||
leftLink={{
|
||||
text: "Home", href: "#home"}}
|
||||
rightLink={{
|
||||
text: "News", href: "#news"}}
|
||||
copyrightText="© 2025 | Espérance Sportive de Tunis. All rights reserved."
|
||||
columns={[
|
||||
{
|
||||
title: "Discover EST", items: [
|
||||
{ label: "Home", href: "#home" },
|
||||
{ label: "Legends", href: "#legends" },
|
||||
{ label: "Sports Hub", href: "#sports-hub" },
|
||||
{ label: "Players", href: "#players" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Media & Info", items: [
|
||||
{ label: "News", href: "#news" },
|
||||
{ label: "Partners", href: "#partners" },
|
||||
{ label: "About", href: "#about" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Connect", items: [
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "Join Fan Club", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user