diff --git a/resources/js/pages/home/home.tsx b/resources/js/pages/home/home.tsx index 0235a9e..c3bc433 100644 --- a/resources/js/pages/home/home.tsx +++ b/resources/js/pages/home/home.tsx @@ -4,6 +4,7 @@ import FlashMessages from '@/modules/flash/flash-messages'; import FAQ from './partials/FAQ.jsx'; import Features from './partials/Features.jsx'; import Hero from './partials/Hero.jsx'; +import JoinDiscordGroup from './partials/JoinDiscordGroup.jsx'; const Home = () => { return ( @@ -15,6 +16,7 @@ const Home = () => { + diff --git a/resources/js/pages/home/partials/JoinDiscordGroup.jsx b/resources/js/pages/home/partials/JoinDiscordGroup.jsx new file mode 100644 index 0000000..f380a6a --- /dev/null +++ b/resources/js/pages/home/partials/JoinDiscordGroup.jsx @@ -0,0 +1,77 @@ +import { ExternalLink, Lightbulb, Megaphone, Users } from 'lucide-react'; + +const JoinDiscordGroup = () => { + return ( +
+
+
+

Join Our Discord Community

+

Connect with creators, get updates, and get community support

+
+ +
+
+ {/* Left side - Discord info */} +
+
+
+ +
+
+

MEMEAIGEN Discord

+
+
+ + + Join Discord Community + + +
+ + {/* Right side - Features */} +
+
+
+ +
+

Announcements

+

+ Be first to know about new features, memes, and updates +

+
+ +
+
+ +
+

Feature Requests

+

+ Share your ideas and help shape the future of MEMEAIGEN +

+
+ +
+
+ +
+

Community Showcase

+

+ Share your viral memes, get feedback, and discover trending content from other creators +

+
+
+
+
+
+
+ ); +}; + +export default JoinDiscordGroup;