Skip to content
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
93 changes: 72 additions & 21 deletions 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 @@ -24,7 +24,8 @@
"react-icons": "^5.5.0",
"react-router-dom": "^6.30.3",
"three": "^0.180.0",
"web-vitals": "^2.1.4"
"web-vitals": "^2.1.4",
"yaml": "^2.9.0"
},
"scripts": {
"start": "react-scripts start",
Expand Down
Binary file added public/1(1).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/1.png
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/2(1).jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/2.jpg
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/3(1).png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/3.png
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/4(1).jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/4.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -643,6 +643,8 @@ function App() {
height: "150px",
display: "block",
transition: "transform 0.5s ease",
objectFit: "cover",
objectPosition: "center",
}}
loading="lazy"
/>
Expand Down
10 changes: 5 additions & 5 deletions src/components/InfoCards/InfoCards.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
@media (min-width: 1024px) {
.info-cards-container {
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
flex-wrap: nowrap;
justify-content: center;
align-items: stretch;
flex-wrap: wrap;
padding: 8rem 1rem;
gap: 0.25rem;
gap: 2rem;
}
}

Expand Down Expand Up @@ -52,7 +52,7 @@

@media (min-width: 1024px) {
.info-card {
width: 33.333%;
width: 45%;
min-width: 360px;
min-height: 500px;
}
Expand Down
32 changes: 28 additions & 4 deletions src/components/InfoCards/InfoCards.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React from 'react';
import './InfoCards.css';
import FadeInOnScroll from '../FadeInOnScroll/FadeInOnScroll';
import { FaBookOpen, FaCalendarAlt, FaBox } from 'react-icons/fa';
import { FaBookOpen, FaCalendarAlt, FaBox, FaCalculator } from 'react-icons/fa';

const InfoCards = () => {
return (
Expand All @@ -26,7 +26,7 @@ const InfoCards = () => {
target="_blank"
rel="noopener noreferrer"
>
Available Now
Truy Cập
</a>
</div>
</FadeInOnScroll>
Expand All @@ -50,7 +50,7 @@ const InfoCards = () => {
target="_blank"
rel="noopener noreferrer"
>
Available Now
Truy Cập
</a>
</div>
</FadeInOnScroll>
Expand All @@ -75,7 +75,31 @@ const InfoCards = () => {
target="_blank"
rel="noopener noreferrer"
>
Available Now
Truy Cập
</a>
</div>
</FadeInOnScroll>

{/* Quamon */}
<FadeInOnScroll direction="left" delay={400}>
<div className="info-card" style={{ marginLeft: '0.2rem' }}>
<div className="card-icon">
<FaCalculator className="icon" />
</div>

<h3 className="card-title">Quamon</h3>
<p className="card-description">
Ứng dụng hỗ trợ sinh viên quản lý điểm số, tính toán điểm trung bình (GPA)
và theo dõi tiến độ học tập, giúp bạn lên chiến lược "qua môn" hiệu quả.
</p>

<a
className="card-badge"
href="https://quamon.svuit.org/"
target="_blank"
rel="noopener noreferrer"
>
Truy Cập
</a>
</div>
</FadeInOnScroll>
Expand Down
6 changes: 3 additions & 3 deletions src/index.css
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&subset=vietnamese&display=swap');

* {
font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
Expand All @@ -16,4 +16,4 @@ body {
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
}
Loading