Skip to content

Commit

Permalink
education template page
Browse files Browse the repository at this point in the history
  • Loading branch information
sairohitp committed Jan 15, 2024
1 parent b9851a4 commit 66779e8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import React from "react";
import Award from "./Award";
import React from 'react'
import Award from "../../components/awards/Award";

import AwardsCSS from "./Awards.module.css";
import AwardsCSS from "../../components/awards/Awards.module.css";

import hackatoge from "../../assets/awards/hackatoge.jpg";
import concepto from "../../assets/awards/concepto.jpeg";

const Awards = () => {
return (
const AchievementContent = () => {
return (
<section id={AwardsCSS.parentsection}>
<div className={AwardsCSS.sectionbody}>
<div id={AwardsCSS.sectiontitle}>
Expand All @@ -32,7 +32,7 @@ const Awards = () => {

<hr />

<Award
<Award
awardIMG={concepto}
awardRank = "#3"
awardTitle="Concepto 3.0"
Expand Down Expand Up @@ -81,7 +81,7 @@ const Awards = () => {
</div>
</div>
</section>
);
};
)
}

export default Awards;
export default AchievementContent
3 changes: 2 additions & 1 deletion src/pages/Achievements/Achievements.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Navbar from '../../components/navbar/Navbar'
import Subnav from '../../components/navbar/Subnav'

import Footer from '../../components/footer/Footer'
import AchievementContent from './AchievementContent'

const Achievements = () => {
return (
Expand All @@ -18,7 +19,7 @@ const Achievements = () => {
]}
/>


<AchievementContent/>
<Footer />
<div className="subbody"></div>
</>
Expand Down

0 comments on commit 66779e8

Please sign in to comment.