Changing copy

This commit is contained in:
zmeyer44 2023-10-27 20:26:51 -04:00
parent 4cb070c82c
commit 06b00e619a
2 changed files with 6 additions and 6 deletions

View File

@ -20,11 +20,11 @@ export default function BecomeACreator() {
/> />
<div className="max-sm:px-5 md:self-start lg:max-w-lg lg:self-center"> <div className="max-sm:px-5 md:self-start lg:max-w-lg lg:self-center">
<h2 className="font-condensed text-2xl font-bold text-foreground sm:text-3xl"> <h2 className="font-condensed text-2xl font-bold text-foreground sm:text-3xl">
Start earning on Nostr Create Events on Nostr
</h2> </h2>
<div className="mb-6 mt-2 text-muted-foreground"> <div className="mb-6 mt-2 text-muted-foreground">
Create a subscrition tier so you can start offering your users Start organizing your events an calendar on directly on Nostr.
access to private content! Seamlessly collect payments and engage with your community.
</div> </div>
<Button onClick={() => modal?.show(<CreateSubscriptionTier />)}> <Button onClick={() => modal?.show(<CreateSubscriptionTier />)}>
Become a Creator Become a Creator

View File

@ -2,7 +2,7 @@ import dynamic from "next/dynamic";
import ExploreCreators from "./_sections/ExploreCreators"; import ExploreCreators from "./_sections/ExploreCreators";
import UpcomingEvents from "./_sections/UpcomingEvents"; import UpcomingEvents from "./_sections/UpcomingEvents";
import LongFormContentSection from "./_sections/LongFormContent"; import LongFormContentSection from "./_sections/LongFormContent";
import BecomeACreator from "./_sections/BecomeACreator"; import CreateEvents from "./_sections/CreateEvents";
const LiveStreamingSection = dynamic( const LiveStreamingSection = dynamic(
() => import("./_sections/LiveStreaming"), () => import("./_sections/LiveStreaming"),
@ -26,10 +26,10 @@ export default function Page() {
<ExploreCreators /> <ExploreCreators />
<UpcomingEvents /> <UpcomingEvents />
<LongFormContentSection /> <LongFormContentSection />
<BecomeACreator /> <CreateEvents />
<LiveStreamingSection /> <LiveStreamingSection />
<FeaturedListsSection /> <FeaturedListsSection />
<div className="z-overlay- fixed bottom-[calc(var(--bottom-nav-height)_+_20px)] right-[20px] sm:hidden"> <div className="fixed bottom-[calc(var(--bottom-nav-height)_+_20px)] right-[20px] z-overlay- sm:hidden">
<NewEventButton /> <NewEventButton />
</div> </div>
</div> </div>