Skip to content

Commit

Permalink
Merge pull request GDSC-Jadavpur-University#36 from like-rounak/main
Browse files Browse the repository at this point in the history
To Add Logos in all pages - Home Page ; Events ; Gallery ; Projects ; Team
  • Loading branch information
Ayushpanditmoto authored Oct 2, 2023
2 parents e0d7bc5 + d4a7432 commit 1a874e7
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 4 deletions.
11 changes: 10 additions & 1 deletion pages/events/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
import React from "react";

function Events() {
return <div>Events</div>;
return (
<div>
<div>
Events
</div>
<div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
</div>
</div>
);
}

export default Events;
11 changes: 10 additions & 1 deletion pages/gallery/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
import React from "react";

function Gallery() {
return <div>Gallery</div>;
return (
<div>
<div>
Gallery
</div>
<div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
</div>
</div>
);
}

export default Gallery;
1 change: 1 addition & 0 deletions pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export default function Home() {
<Landing />
<Fields />
</div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
</>
);
}
12 changes: 11 additions & 1 deletion pages/projects/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,17 @@
import React from "react";

function Projects() {
return <div>Projects</div>;

return (
<div>
<div>
Projects
</div>
<div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
</div>
</div>
);
}

export default Projects;
11 changes: 10 additions & 1 deletion pages/team/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,16 @@
import React from "react";

function Team() {
return <div>Team</div>;
return (
<div>
<div>
Team
</div>
<div>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css" />
</div>
</div>
);
}

export default Team;

0 comments on commit 1a874e7

Please sign in to comment.