Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Homepage ui (#134) #161

Merged
merged 2 commits into from
Jun 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"react-dom": "^18.2.0",
"react-h5-audio-player": "^3.9.1",
"react-router-dom": "^6.23.1",
"react-top-loading-bar": "^2.3.1"
"react-top-loading-bar": "^2.3.1",
"react-typed": "^2.0.12"
},
"devDependencies": {
"@types/react": "^18.2.43",
Expand Down
1 change: 1 addition & 0 deletions public/ai.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/e-book.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/home1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/secured.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/video.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
20 changes: 20 additions & 0 deletions src/components/Home/VideoButton.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import React from "react";
import '../../css/Home.css'

export default function VideoButton() {
return (
<button class="video-button">
<svg
viewBox="0 0 448 512"
xmlns="http://www.w3.org/2000/svg"
aria-hidden="true"
width="26px"
>
<path
d="M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6z"
fill="currentColor"
></path>
</svg>
</button>
);
}
306 changes: 306 additions & 0 deletions src/css/Home.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,306 @@
.flex {
display: flex;
}
.flex-col {
flex-direction: column;
}
.item-center {
align-items: center;
}
.justify-center {
justify-content: center;
}
.animated-img {
animation: moveUpDown 2s infinite;
width: 100%;
}
.w-full {
width: 100%;
}
.flex-row {
flex-direction: row;
}
@keyframes moveUpDown {
0% {
transform: translateY(0);
}
50% {
transform: translateY(-20px); /* Adjust the distance as needed */
}
100% {
transform: translateY(0);
}
}
.p-4 {
padding: 8px;
}
.font-bold {
font-weight: bold;
}

.home-container {
display: flex;
flex-direction: row;
padding: 80px 4px;
align-items: center;
justify-content: center;
width: 100%;
/* flex sm:flex-row flex-col item-center justify-center w-full p-4 */
}
.img-container {
/* flex item-center justify-center w-full */
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
}

.home-heading {
font-size: 4.5rem;
}

.badge-feat {
display: flex;
align-items: center;
justify-content: center;
font-weight: bold;
background-color: #d2daff;
border-radius: 2.2rem;
color: black;
outline: none;
border: 0;
font-size: 1.5rem;
padding: 10px 30px;
}

.feat-1 {
display: flex;
flex-direction: row;
padding: 10px;
margin: 20px 0px;
align-items: center;
justify-content: center;
width: 100%;
border-radius: 2rem;
}

.feat-1 img {
width: 250px;
}

.feat-2 {
display: flex;
flex-direction: row;
padding: 10px;
padding-bottom: 100px;
margin: 20px 0px;
align-items: center;
justify-content: space-around;
width: 100%;
border-radius: 2rem;
}

.gap-2{
gap: 2px;
}

.feat-card {
width: 350px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
padding: 20px;
border-radius: 20px;
border: 1px black solid;
background-color: #eef1ff;
}

.feat-card-2{
width: 1000px;
display: flex;
flex-direction:column;
align-items: center;
justify-content: center;
gap: 20px;
padding: 20px;
border-radius: 20px;
border: 1px black solid;
background-color: #eef1ff;
}

.feat-card-content {
display: flex;
flex-direction: column;
gap: 3px;
}

.feat-card p {
font-size: 1rem;
}

.feat-card-content h5{
font-weight: 700;
}

.feat-card img {
padding: 4px;
border-radius: 10px;
width: 100%;
}

.card-line {
border: 1px;
border-bottom: 1px black solid;
}

.feat-3{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
padding: 20px;
padding-bottom: 100px;
}

.feat-3 img{
width: 60px;
border-radius: 100%;
}



.gap-10{
gap: 40px;
}
.font-semibold{
font-weight: 500;
}
/* Responsive adjustments */
@media (max-width: 1024px) {
.home-heading {
font-size: 2rem;
}
}
@media (max-width: 768px) {
.home-heading {
font-size: 1.5rem;
}
.animated-img {
max-width: 200px; /* Adjust for smaller screens */
}
}
@media (max-width: 480px) {
.home-heading {
font-size: 2.2rem;
}

.p-4 {
padding: 8px;
}
.animated-img {
max-width: 250px; /* Further adjustment for very small screens */
}

.home-container {
display: flex;
flex-direction: column;
padding: 4px;
align-items: center;
justify-content: center;
width: 100%;
/* flex sm:flex-row flex-col item-center justify-center w-full p-4 */
}
.img-container {
/* flex item-center justify-center w-full */
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
width: 100%;
padding: 40px 0px;
}

.feat-1 {
display: flex;
flex-direction: column;
padding: 10px;
margin: 20px 0px;
align-items: center;
justify-content: center;
width: 100%;
border-radius: 2rem;
}
.feat-1 img {
width: 200px;
}

.feat-2 {
display: flex;
flex-direction: column;
padding: 10px;
padding-bottom: 100px;
margin: 20px 0px;
align-items: center;
justify-content: space-around;
width: 100%;
border-radius: 2rem;
gap: 50px;
text-align: center;
}

.feat-card {
width: 300px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
padding: 20px;
border-radius: 20px;
border: 1px black solid;
background-color: #eef1ff;
}

.feat-card-2{
width: 300px;
display: flex;
flex-direction:column;
align-items: center;
justify-content: center;
gap: 20px;
padding: 20px;
border-radius: 20px;
border: 1px black solid;
background-color: #eef1ff;
}
}

.video-button {
display: flex;
justify-content: center;
color: #fff;
width: 80px;
height: 80px;
border-radius: 100%;
background: linear-gradient(30deg, rgb(255, 130, 0) 20%, rgb(255, 38, 0) 80%);
transition: all 0.3s ease-in-out 0s;
box-shadow: rgba(70, 68, 68, 0.698) 0px 0px 0px 0px;
animation: 1.2s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running
pulse;
align-items: center;
border: 0;
}

.video-button:is(:hover, :focus) {
transform: scale(1.2);
}

@keyframes pulse {
100% {
box-shadow: 0 0 0 45px rgba(0, 0, 0, 0);
}
}
Loading