File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ const AppBanner = () => {
9
9
return (
10
10
< section className = "flex flex-col sm:justify-between items-center sm:flex-row mt-12 sm:mt-2" >
11
11
< div className = "w-full sm:w-1/3 text-left" >
12
- < h1 className = "text-3xl sm:text-5xl text-center sm:text-left font-semibold text-ternary-dark dark:text-primary-light uppercase" >
12
+ < h1 className = "text-2xl sm:text-3xl lg:text-4xl xl :text-5xl text-center sm:text-left font-semibold text-ternary-dark dark:text-primary-light uppercase" >
13
13
Hi, Iam Stoman
14
14
</ h1 >
15
- < p className = "mt-4 text-2xml sm:text-4xl text-center sm:text-left font-semibold leading-none text-gray-400" >
15
+ < p className = "mt-4 text-xl sm:text-2xl lg:text-3xl xl :text-4xl text-center sm:text-left font-semibold leading-none text-gray-400" >
16
16
A Full-Stack Developer & Design Enthusiast
17
17
</ p >
18
18
< div className = "flex justify-center sm:block" >
Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ const ProjectsGrid = () => {
91
91
{ /* Filter and search projects end */ }
92
92
93
93
{ /* Projects grid start */ }
94
- < div className = "grid grid-cols-1 sm:grid-cols-3 mt-6 sm:gap-10" >
94
+ < div className = "grid grid-cols-1 sm:grid-cols-2 lg:grid-cols- 3 mt-6 sm:gap-10" >
95
95
{ /* <ProjectSingle
96
96
v-for="project in filteredProjects"
97
97
:key="project.id"
Original file line number Diff line number Diff line change
1
+ import { Link } from 'react-router-dom' ;
1
2
import AppBanner from '../components/AppBanner' ;
2
3
import ProjectsGrid from '../components/ProjectsGrid' ;
3
4
@@ -6,6 +7,15 @@ const Home = () => {
6
7
< div className = "container mx-auto" >
7
8
< AppBanner > </ AppBanner >
8
9
< ProjectsGrid > </ ProjectsGrid >
10
+ < div class = "mt-10 sm:mt-15 flex justify-center" >
11
+ < Link
12
+ to = "/projects"
13
+ class = "flex items-center px-6 py-3 rounded-lg shadow-lg hover:shadow-xl bg-indigo-500 hover:bg-indigo-600 focus:ring-1 focus:ring-indigo-900 text-white text-lg sm:text-xl font-medium"
14
+ aria-label = "More Projects"
15
+ >
16
+ More Projects
17
+ </ Link >
18
+ </ div >
9
19
</ div >
10
20
) ;
11
21
} ;
You can’t perform that action at this time.
0 commit comments