Compare commits
7 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1f645d7fe7 | |||
| e573d893a7 | |||
| 41d4de4789 | |||
| 9eacfba5d0 | |||
| e64a22682a | |||
| f104622ac6 | |||
| 9f7ee8a4b5 |
@@ -3,9 +3,9 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import BlogCardOne from '@/components/sections/blog/BlogCardOne';
|
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 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 HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||||
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
|
||||||
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
|
||||||
@@ -274,36 +274,54 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactSplitForm
|
<ContactCTA
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
title="Get in Touch with EST"
|
title="Engage with EST Community"
|
||||||
description="Reach out to us for fan inquiries, partnership opportunities, or general feedback. We're here to connect!"
|
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."
|
||||||
inputs={[
|
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={{
|
buttonAnimation="slide-up"
|
||||||
name: "message", placeholder: "Your Message", rows: 4,
|
background={{
|
||||||
required: true}}
|
variant: "radial-gradient"}}
|
||||||
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"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterLogoReveal
|
<FooterBase
|
||||||
logoSrc="http://img.b2bpic.net/free-vector/autumn-labels-collection_23-2147882334.jpg"
|
logoSrc="http://img.b2bpic.net/free-vector/autumn-labels-collection_23-2147882334.jpg"
|
||||||
logoAlt="EST Logo"
|
logoAlt="EST Logo"
|
||||||
logoText="EST: The Empire of Africa"
|
logoText="EST: The Empire of Africa"
|
||||||
leftLink={{
|
copyrightText="© 2025 | Espérance Sportive de Tunis. All rights reserved."
|
||||||
text: "Home", href: "#home"}}
|
columns={[
|
||||||
rightLink={{
|
{
|
||||||
text: "News", href: "#news"}}
|
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>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-dm-sans), sans-serif;
|
font-family: var(--font-inter), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #0A0A0A;
|
--background: #000000;
|
||||||
--card: #1A1A1A;
|
--card: #0c0c0c;
|
||||||
--foreground: #F0F0F0;
|
--foreground: #ffffff;
|
||||||
--primary-cta: #C8102E;
|
--primary-cta: #cee7ff;
|
||||||
--primary-cta-text: #FFFFFF;
|
--primary-cta-text: #000000;
|
||||||
--secondary-cta: #FFD700;
|
--secondary-cta: #000000;
|
||||||
--secondary-cta-text: #000000;
|
--secondary-cta-text: #ffffff;
|
||||||
--accent: #E01B44;
|
--accent: #535353;
|
||||||
--background-accent: #5A000D;
|
--background-accent: #CEE7FF;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user