Skip to content

Commit

Permalink
update - add logo
Browse files Browse the repository at this point in the history
  • Loading branch information
like-rounak committed Oct 2, 2023
1 parent 3bfdb29 commit d494436
Show file tree
Hide file tree
Showing 5 changed files with 43 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;
2 changes: 2 additions & 0 deletions pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ export default function Home() {
<Head>
<title>GDSC Jadavpur University</title>
<meta name="description" content="Join the Google Developer Student Club Program to supercharge your technical skills and make a real impact! Open to all students, from beginners to experts, our club offers peer-to-peer learning, exciting events in web development, app development, competitive programming, machine learning, and more. Bridge the gap between theory and practice, grow your network, and access Google developer resources with us." />

</Head>
<div className={quicksand.style}>
<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 d494436

Please sign in to comment.