Updated price to 0. Altered PricingTemp text.

This commit is contained in:
Palmn72 2023-09-15 19:30:10 +02:00
parent efa9492a92
commit 62fe097166
3 changed files with 9 additions and 7 deletions

View File

@ -66,6 +66,11 @@ const NavLinks = ({ onClick }: NavLinksProps) => {
{intl.formatMessage({ id: 'navigation.screenshots' })}
</Link>
</li>
<li>
<Link to="vad-kostar-det" href="/#vad-kostar-det">
{intl.formatMessage({ id: 'navigation.whatdoesitcost' })}
</Link>
</li>
</ul>
)
}

View File

@ -32,17 +32,12 @@ const Pricing = () => {
<section className="px-5 py-8 md:px-0 md:py-32" id="vad-kostar-det">
<div className="max-w-2xl mx-auto">
<SectionTitle
title="Varför inte gratis?"
text={`
Vi som bygger appen vill gärna fortsätta vidareutveckla den och även ha möjlighet att ge ersättning
till de som hjälper till. Vi gjorde ett försök att ge ut appen gratis och hoppades att fler kunde stötta oss via
Patreon istället. Det visade sig inte vara hållbart men om vi får fler sponsorer kommer vi göra appen gratis igen!
`}
title="Appen är Gratis,"
text={`samtidigt, för att kunna fortsätta utveckla och bibehålla appens kvalitet så länge som möjligt, skulle vi uppskatta mycket om du bidrar på Patreon!`}
/>
</div>
<div className="flex">
<div className="flex flex-col items-center inline-block px-5 py-8 mx-auto text-center shadow-lg rounded-md dark:bg-gray-800">
<h3 className="text-3xl text-gray-800 dark:text-gray-400">Just nu</h3>
<div className="mt-5 text-6xl text-pink-500">
{formatPrice(price)}
</div>

View File

@ -4,6 +4,7 @@ import CtaThree from '../components/CtaThree'
import CtaTwo from '../components/CtaTwo'
import Features from '../components/Features'
import FunFacts from '../components/FunFacts'
import PricingTemp from '../components/PricingTemp'
import Testimonials from '../components/Testimonials'
import TimelineLatest from '../components/TimelineLatest'
import Flash from '../components/Flash'
@ -20,6 +21,7 @@ const HomePage: NextPage = () => {
<CtaTwo />
<CtaThree />
<AppShots />
<PricingTemp />
<Testimonials />
</>
)