Skip to content

Commit e8df4ca

Browse files
committed
Making the CTA on the Home page more effective.
1 parent 9900e1e commit e8df4ca

File tree

3 files changed

+9
-20
lines changed

3 files changed

+9
-20
lines changed

app/page.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export default function Home() {
1313
return (
1414
<div className="md:px-2 lg:px-4">
1515
<a
16-
href="/games/"
16+
href="/games/introduction"
1717
className="w-full cursor-pointer p-1 mx-auto max-w-[1000px] rounded
1818
bg-[url('/light-bg-pattern.svg')]
1919
dark:bg-[url('/dark-bg-pattern.svg')]
@@ -33,7 +33,7 @@ export default function Home() {
3333
<Button className="shadow-white">Try them now!</Button>
3434
</a>
3535
<CH1 text="Welcome to LearnPython.Today!" />
36-
<SubTitle text="A pragmatic plan on how to learn python. How and Why." />
36+
<SubTitle text="🐍 Dive into Python with ease!" />
3737
<AboutHome />
3838
<BlogComponent blogs={filteredBlogs} />
3939
</div>

components/about-home.tsx

+7-15
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,19 @@ export function AboutHome() {
1313
/>
1414
<div>
1515
<p className="leading-7 max-w-[1000px]">
16-
Hey, I'm{" "}
17-
<a href="/about" className="font-bold underline">
18-
François!{" "}
19-
</a>{" "}
20-
👋
21-
<br />I created this site because I understand that learning Python
22-
can often seem daunting. This is my way of simplifying the process for
23-
everyone.
24-
<br />
25-
My goal is for this blog to be your friendly guide in the Python
26-
world.
27-
<b> All articles aim to be 5mins or less</b> and they
28-
should help you cut through the clutter and focus on what truly
29-
matters.
16+
Explore 5-minute reads on our blog—your
17+
friendly guide in the Python world.
18+
<br/>
19+
Simplify your learning and focus
20+
on what matters most.
3021
</p>
3122

3223
<p className="leading-7 mt-3">
3324
I suggest beginning with the{" "}
3425
<a href="/blog/intro" className="font-bold underline">
3526
introductory article
36-
</a>, but feel free to explore other sections first if you prefer.
27+
</a>
28+
, but feel free to explore other sections first if you prefer.
3729
</p>
3830
</div>
3931
</div>

config/blogs/markdowns/how_to_generate_waf.md

-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ myobj = gTTS(text=mytext, lang=language, slow=False)
4040

4141
# Saving the converted audio in a WAV file
4242
myobj.save("welcome.wav")
43-
44-
# Playing the converted file
45-
os.system("mpg321 welcome.wav")
4643
```
4744

4845
### Code Explanation

0 commit comments

Comments
 (0)