Skip to content

Commit 3ec0288

Browse files
committed
bump
1 parent 9af8d96 commit 3ec0288

File tree

4 files changed

+35
-30
lines changed

4 files changed

+35
-30
lines changed

src/app/(marketing)/layout.tsx

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,18 @@ export const metadata: Metadata = {
2828
title,
2929
description,
3030
keywords: [
31-
'coding',
32-
'programming',
3331
'software engineering',
34-
'web development',
35-
'ai',
36-
'machine learning',
37-
'education'
32+
'coding challenges',
33+
'AI-powered learning',
34+
'personalized coding roadmap',
35+
'tech community',
36+
'full-stack development',
37+
'data structures and algorithms',
38+
'coding statistics',
39+
'continuous learning',
40+
'career advancement',
41+
'coding best practices',
42+
'tech skills assessment'
3843
],
3944
openGraph: {
4045
title,

src/components/marketing/global/open-source/open-source-block.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Button } from '@/components/ui/button';
2-
import { ChevronRight } from 'lucide-react';
2+
import { ChevronRight, Star } from 'lucide-react';
33
import OpenSourceCard from './open-source-card';
44
import CommitCard from './commit-card';
55

@@ -55,7 +55,7 @@ export default function OpenSourceBlock() {
5555
];
5656

5757
return (
58-
<section className="pb-20 md:pb-52 grid grid-cols-12 gap-4 lg:gap-16">
58+
<section className="pb-20 md:pb-52 grid grid-cols-12 gap-4 lg:gap-16 relative">
5959
<div className="flex flex-col gap-y-3 col-span-full lg:col-span-5 self-center">
6060
<h1 className="text-2xl lg:text-5xl !font-sans !leading-[normal] text-gradient from-white to-white/55">
6161
Secrets are for Magicians, Not Software
@@ -71,10 +71,10 @@ export default function OpenSourceBlock() {
7171
>
7272
<Button
7373
variant="secondary"
74-
className="w-fit"
74+
className="w-fit flex gap-x-1"
7575
>
76-
Source Code
77-
<ChevronRight className="size-4 ml-2" />
76+
<Star className="size-5 text-yellow-400 fill-yellow-300" />
77+
on GitHub!
7878
</Button>
7979
</a>
8080
</div>

src/components/marketing/homepage/features/features-bento-grid.tsx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,10 @@ export default function FeaturesBentoGrid() {
2727
We make Software engineering easy{' '}
2828
</h1>
2929
<span className="text-gray-400 max-w-3xl">
30-
Daily questions, leaderboards, AI generated progression paths & 1000's
31-
of questions designed to aid in solving real-world software problems.
32-
Everything you need to become a better developer.
30+
Elevate your coding skills with TechBlitz: AI-powered learning paths,
31+
daily challenges, competitive leaderboards, and a vast question bank
32+
tackling real-world software problems. Your all-in-one platform for
33+
continuous growth and career advancement in tech.
3334
</span>
3435
</div>
3536
<div className="min-h-[1400px] md:min-h-[1000px] lg:min-h-[700px] rounded-lg">
@@ -47,8 +48,8 @@ export default function FeaturesBentoGrid() {
4748
AI Powered Progression Paths
4849
</h6>
4950
<p className="text-xs text-gray-400">
50-
Our AI powered roadmap will help you take the next step in
51-
your developer journey.
51+
Personalized learning paths tailored to your goals and skill
52+
level.
5253
</p>
5354
</div>
5455
<Button
@@ -78,8 +79,7 @@ export default function FeaturesBentoGrid() {
7879
Progress tracking
7980
</h6>
8081
<p className="text-xs text-gray-400">
81-
Track your progress and view your strengths and weaknesses as
82-
you learn.
82+
Track your progress and use AI to analysis your coding habits.
8383
</p>
8484
</div>
8585
<div className="w-full h-fit flex items-center justify-center">
@@ -115,8 +115,8 @@ export default function FeaturesBentoGrid() {
115115
Daily questions
116116
</h6>
117117
<p className="text-xs text-gray-400">
118-
Daily questions will help you reinforce your learning and
119-
understand concepts.
118+
Sharpen your skills with practical, industry-relevant coding
119+
challenges.
120120
</p>
121121
</div>
122122
<Button

src/components/marketing/homepage/hero/hero.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,21 @@ export default function HomepageHero() {
2222
<ArrowUpRight className="ml-2 size-4 group-hover:rotate-45 duration-300" />
2323
</span>
2424
</Link>
25-
<h1 className="text-5xl lg:text-7xl !font-onest !font-medium tracking-tight text-gradient from-white to-white/75">
26-
Software Engineering,{' '}
25+
<h1 className="text-5xl lg:text-7xl !font-onest !font-medium tracking-tight">
2726
<span className="bg-clip-text text-transparent bg-gradient-to-r from-accent to-accent/55">
28-
<br />
29-
Tailored{' '}
27+
Supercharge{' '}
28+
</span>
29+
<span className=" text-gradient from-white to-white/75">
30+
Your <br /> Software Engineering Career
3031
</span>
31-
to You
3232
</h1>
3333
<h6 className="font-onest max-w-2xl text-gray-400">
34-
A fully customizable, end-to-end learning platform for software
35-
engineers of all abilities — packed with daily challenges that are{' '}
34+
AI-powered learning paths, daily coding challenges, and a supportive
35+
tech community. Tailored for{' '}
3636
<span className="bg-clip-text text-transparent bg-gradient-to-r from-accent to-accent/80">
37-
actually
38-
</span>{' '}
39-
useful.
37+
every{' '}
38+
</span>
39+
skill level.
4040
</h6>
4141
{process.env.NEXT_PUBLIC_ENV === 'development' ? (
4242
<HomepageHeroEmailSignup />

0 commit comments

Comments
 (0)