Skip to content

Commit c65023d

Browse files
committed
Made the logo of Text_input.jsx transparent for consistency across all pages.
1 parent 1f4ad36 commit c65023d

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

eduaid_web/src/pages/Home.jsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import React, { useState, useEffect } from "react";
2-
import "../index.css";
3-
import logo from "../assets/aossie_logo.png";
4-
import starsImg from "../assets/stars.png";
5-
import arrow from "../assets/arrow.png";
6-
import gitStar from "../assets/gitStar.png";
7-
import { FaGithub } from "react-icons/fa";
1+
import React, { useState, useEffect } from 'react';
2+
import '../index.css';
3+
import logo from '../assets/aossie_logo_transparent.png';
4+
import starsImg from '../assets/stars.png';
5+
import arrow from '../assets/arrow.png';
6+
import gitStar from '../assets/gitStar.png';
7+
import { FaGithub } from 'react-icons/fa';
88

99
const Home = () => {
1010
const [stars, setStars] = useState(null);

eduaid_web/src/pages/Question_Type.jsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import React, { useState } from "react";
2-
import "../index.css";
3-
import logo from "../assets/aossie_logo.png";
1+
import React, { useState } from 'react';
2+
import '../index.css';
3+
import logo from '../assets/aossie_logo_transparent.png';
44

55
const Question_Type = () => {
66
const [selectedOption, setSelectedOption] = useState(null);

eduaid_web/src/pages/Text_Input.jsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
import React, { useState, useRef } from "react";
2-
import "../index.css";
3-
import logo from "../assets/aossie_logo.png";
4-
import stars from "../assets/stars.png";
5-
import cloud from "../assets/cloud.png";
6-
import { FaClipboard } from "react-icons/fa";
7-
import Switch from "react-switch";
1+
import React, { useState, useRef } from 'react';
2+
import '../index.css';
3+
import logo from '../assets/aossie_logo_transparent.png';
4+
import stars from '../assets/stars.png';
5+
import cloud from '../assets/cloud.png';
6+
import { FaClipboard } from 'react-icons/fa';
7+
import Switch from 'react-switch';
88

99
const Text_Input = () => {
1010
const [text, setText] = useState("");

0 commit comments

Comments
 (0)