@@ -14,14 +14,14 @@ const Home = () => {
14
14
< Navbar />
15
15
< div className = "flex items-center gap-14 justify-center mt-20 bg-opacity-20 p-20 md:shadow-xl flex-col" >
16
16
< GradualSpacing
17
- className = "font-display text-center text-[3rem ] sm:text-[5rem] lg:text-[7rem] font-bold tracking-tighter text-black dark:text-white md:leading-[5rem]"
17
+ className = "font-display text-center text-[2.5rem ] sm:text-[5rem] lg:text-[7rem] font-bold tracking-tighter text-black dark:text-white md:leading-[5rem]"
18
18
text = "Welcome Coders"
19
19
duration = { 0.6 }
20
20
/>
21
21
22
- < div className = "flex flex-col gap-2 mt-4 justify-center items-center font-bold text-2xl" >
22
+ < div className = "flex flex-col gap-2 mt-4 justify-center items-center font-bold text-md sm:text- 2xl" >
23
23
< p className = "text-white text-center" >
24
- < span className = "bg-green-600 rounded-lg border border-black px-1 py-1" >
24
+ < span className = "bg-green-600 rounded-lg border border-black px-1 py-1" >
25
25
Share Your Coding
26
26
</ span > { " " }
27
27
Journey and Discover New Insights
@@ -71,14 +71,14 @@ function Navbar(){
71
71
72
72
const navItems = [
73
73
{
74
- name : "All blogs " ,
74
+ name : "Blogs " ,
75
75
onClick : ( ) => {
76
76
token ? navigate ( "/blogs" ) : navigate ( "/signin" ) ;
77
77
} ,
78
78
className : "" ,
79
79
} ,
80
80
{
81
- name : "Create Blog " ,
81
+ name : "Create" ,
82
82
onClick : ( ) => {
83
83
token ? navigate ( "/createblog" ) : navigate ( "/signin" ) ;
84
84
} ,
@@ -95,9 +95,12 @@ function Navbar(){
95
95
return (
96
96
< div className = "bg-black w-full h-16 flex items-center absolute top-2 justify-center px-10" >
97
97
< div className = "flex w-full xl:min-w-[40rem] bg-[#0f1115] justify-around items-center border md:gap-4 rounded-xl px-1 sm:px-3 py-2 border-white" >
98
- < h1 className = "font-extrabold font-sans text-center mr-3 sm:mr-5 text-[#F6D776] text-md sm:text-xl md:text-3xl" >
98
+ < h1 className = "font-extrabold font-sans hidden sm:block text-center mr-3 sm:mr-5 text-[#F6D776] text-sm sm:text-xl md:text-3xl" >
99
99
The Code Whisperers
100
100
</ h1 >
101
+ < h1 className = "font-extrabold font-sans sm:hidden text-center mr-3 sm:mr-5 text-[#F6D776] text-sm sm:text-xl md:text-3xl" >
102
+ TCW
103
+ </ h1 >
101
104
< div className = "flex gap-3 sm:gap-5 justify-center items-center" >
102
105
{ navItems . map ( ( item ) => (
103
106
< h1
0 commit comments