Enhance the homepage with a call to action and update the background
Adds a CTA section to the homepage and replaces a background pattern. Replit-Commit-Author: Agent Replit-Commit-Session-Id: acaf01d7-65a7-4fc5-901d-853488e196e8 Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/af8dabca-e746-4e53-9c29-d8d4d9cf30f5/27969d6d-68d4-4036-8ebd-0befa96028ea.jpg
This commit is contained in:
parent
81d95cb0da
commit
5860030635
|
|
@ -1,6 +1,6 @@
|
|||
import { Link } from "wouter";
|
||||
import { SectionDivider, SectionDividerBottom } from "@/components/ui/section-divider";
|
||||
import { ArabicPattern } from "@/components/ui/section-divider";
|
||||
import { IslamicPattern } from "@/components/ui/section-divider";
|
||||
|
||||
export function CTASection() {
|
||||
return (
|
||||
|
|
@ -8,7 +8,7 @@ export function CTASection() {
|
|||
<SectionDivider color="purple" />
|
||||
|
||||
<div className="relative py-20 bg-purple text-white">
|
||||
<ArabicPattern color="purple" opacity={10} />
|
||||
<IslamicPattern color="purple" opacity={10} />
|
||||
|
||||
<div className="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 text-center">
|
||||
<h2 className="text-3xl md:text-4xl font-playfair font-bold text-white mb-6">
|
||||
|
|
|
|||
|
|
@ -5,6 +5,7 @@ import { ClassesSection } from "@/components/classes/classes-section";
|
|||
import { CommunitySection } from "@/components/community/community-section";
|
||||
import { NewsletterSection } from "@/components/newsletter/newsletter-section";
|
||||
import { ContactSection } from "@/components/contact/contact-section";
|
||||
import { CTASection } from "@/components/home/cta-section";
|
||||
import { useEffect } from "react";
|
||||
|
||||
export default function HomePage() {
|
||||
|
|
@ -21,6 +22,7 @@ export default function HomePage() {
|
|||
<ClassesSection />
|
||||
<CommunitySection />
|
||||
<NewsletterSection />
|
||||
<CTASection />
|
||||
<ContactSection />
|
||||
</main>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in New Issue