Skip to content

Commit 968098c

Browse files
authored
Merge pull request #48 from Divya8210-d/main
UI fixes in The About page
2 parents 87c690d + 8f21b17 commit 968098c

7 files changed

Lines changed: 310 additions & 203 deletions

File tree

frontend/package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"axios": "^1.3.4",
1515
"chart.js": "^4.2.1",
1616
"d3": "^7.8.2",
17-
"framer-motion": "^10.0.1",
17+
"framer-motion": "^10.18.0",
1818
"lucide-react": "^0.323.0",
1919
"monaco-editor": "^0.36.1",
2020
"postcss": "^8.4.21",

frontend/src/components/Tutorial/TutorialLayout.jsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ import React, { useState, useEffect } from 'react';
22
import TutorialStep from './TutorialStep';
33
import TutorialProgress from './TutorialProgress';
44
import TutorialQuiz from './TutorialQuiz';
5+
import { getTutorialById } from '../../services/api';
56

67
const TutorialLayout = ({ tutorialId }) => {
78
const [currentTutorial, setCurrentTutorial] = useState(null);

frontend/src/pages/About.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ const About = () => {
191191
}
192192
`}
193193
>
194-
<div className="w-20 h-20 rounded-full bg-gradient-to-r from-blue-500 to-purple-600 flex items-center justify-center mx-auto mb-4">
194+
<div className="w-30 h-30 rounded-3xl bg-gradient-to-r from-blue-500 to-purple-600 flex items-center justify-center mx-auto mb-4">
195195
<Users className="h-10 w-10 text-white" />
196196
</div>
197197
<h3 className={`text-xl font-semibold mb-2 ${

0 commit comments

Comments
 (0)