Skip to content

Commit

Permalink
Added Pencil Cursor
Browse files Browse the repository at this point in the history
  • Loading branch information
tsakshi011 committed Oct 30, 2024
1 parent 1a28805 commit d99b0d9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import './App.css';
import Header from './components/Header';
import Footer from './components/Footer';
import Landing from './components/Landing';
import Cursor from './images/PencilCursor.svg';

function App() {
const [ data, setData ] = useState(null);
Expand All @@ -15,7 +16,7 @@ function App() {


return data && (
<div className="App">
<div className="App" style={{cursor: `url(${Cursor}), auto`}}>
<Header/>
<Landing landing={data.landing_image}/>
Hello Daily Bruin!
Expand Down
16 changes: 16 additions & 0 deletions src/images/PencilCursor.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit d99b0d9

Please sign in to comment.