Skip to content

Commit

Permalink
add home page&cta + todo context light and dark + general fonts
Browse files Browse the repository at this point in the history
  • Loading branch information
MathisZerbib committed Jul 16, 2024
1 parent 7cd844c commit 7373aa0
Show file tree
Hide file tree
Showing 20 changed files with 871 additions and 293 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"axios": "^1.7.2",
"buffer": "^6.0.3",
"mapbox-gl": "^3.4.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-responsive-carousel": "^3.2.23",
Expand Down
Binary file added public/home.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
42 changes: 40 additions & 2 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
:root {
/* :root {
--tg-theme-bg-color: #ffffff;
--tg-theme-bg-color-dark: #2e2e2e;
--tg-theme-button-color: #2eaddc;
--tg-theme-button-text-color: #fff;
--tg-theme-text-color: #333;
}
} */

*{
margin: 0;
Expand Down Expand Up @@ -38,3 +38,41 @@ body {
padding: 0;
}



.hero {
display: flex;
justify-content: space-between;
align-items: center;
padding: 80px 40px;
background-color: #f0f0f0;
}

.hero-content {
max-width: 600px;
}

.hero h1 {
font-size: 3rem;
color: #333;
margin-bottom: 20px;
}

.hero-description {
font-size: 1.5rem;
color: #666;
line-height: 1.6;
margin-bottom: 40px;
}

.hero-image {
flex: 1;
text-align: center;
}

.hero-image img {
max-width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
Loading

0 comments on commit 7373aa0

Please sign in to comment.