generated from UC-Technologies/reactjs-website
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'dev' of https://github.com/POSUA-NITS/Posua-2024 into e…
…vents_new
- Loading branch information
Showing
20 changed files
with
757 additions
and
269 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,129 @@ | ||
import React from "react"; | ||
|
||
import styles from "./Borhomthuri.module.scss"; | ||
// import Film from "./Filmy"; | ||
// import Card from "./Card"; | ||
import data from "../../assets/Edition.json"; | ||
import LottieHeading from "../LottieHeading/LottieHeading"; | ||
// import ScrolBar from "./ScrolBar"; | ||
// import FrontCover from "./FrontCover"; | ||
const Borhomthuri = () => { | ||
return <div>Borhomthuri</div>; | ||
return ( | ||
<div className={styles.superParent}> | ||
<div className={styles.ParentClass}> | ||
{/* <Pepa /> */} | ||
<div id={styles.leftrangoliholder_borhom}> | ||
<img | ||
src="https://res.cloudinary.com/dp92qug2f/image/upload/v1711549216/leftrangoli_jp6whi.png" | ||
alt="" | ||
/> | ||
</div> | ||
|
||
<div id={styles.rightrangoliholder_borhom}> | ||
<img | ||
src="https://res.cloudinary.com/dp92qug2f/image/upload/v1711549216/rightrangoli_jvpnus.png" | ||
alt="" | ||
/> | ||
</div> | ||
<div id={styles.pepaholder}> | ||
<LottieHeading title="BORHOMTHURI" /> | ||
</div> | ||
{/* <Film /> */} | ||
{/* <Card/> */} | ||
{/* <FrontCover/> */} | ||
<div className={styles.Child1}> | ||
<div className={styles.text}> | ||
<p className={styles.p}> | ||
Borhomthuri is the annual souvenir of POSUA.It enfolds indispensable parts | ||
of Assamese Culture and also the emotions of students in the form of | ||
enthralling articles,poems,stories and sketches.Borhomthuri reflects the | ||
ardour of NITS Family towards POSUA and provides an opportunity for the | ||
literary skills of students to get revived | ||
</p> | ||
<div className={styles.galleryBorhomthuri}> | ||
{data.map((item) => ( | ||
<a | ||
href={item.link} | ||
rel="noopener" | ||
target="_blank" | ||
style={{ margin: "1.2rem" }} | ||
> | ||
<img src={item.src} alt="magazine" /> | ||
<img | ||
src={item.edition_num} | ||
alt="Edition" | ||
style={{ | ||
margin: "0 auto", | ||
padding: ".5rem", | ||
}} | ||
/> | ||
</a> | ||
))} | ||
</div> | ||
</div> | ||
|
||
<div id={styles.camerathingsholder}> | ||
<div className={styles.cameraImg}> | ||
<img | ||
alt="Camera" | ||
src="https://res.cloudinary.com/dp92qug2f/image/upload/v1711559065/camera_posua24_l7ndyp.png" | ||
/> | ||
</div> | ||
|
||
<div id={styles.camerafoucs}> | ||
<img | ||
src="https://res.cloudinary.com/dp92qug2f/image/upload/v1711559384/camera_focus_posua24_orhnta.png" | ||
alt="" | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div className={styles.child2}> | ||
<div className={styles.HiddenText}> | ||
<p> | ||
Borhomthuri is the annual souvenir of POSUA.It enfolds indispensable parts | ||
of Assamese Culture and also the emotions of students in the form of | ||
enthralling articles,poems,stories and sketches.Borhomthuri reflects the | ||
ardour of NITS Family towards POSUA and provides an opportunity for the | ||
literary skills of students to get revived | ||
</p> | ||
</div> | ||
<div className={styles.galleryBorhomthurimobile}> | ||
{data.map((item) => ( | ||
<a | ||
href={item.link} | ||
rel="noopener" | ||
target="_blank" | ||
style={{ margin: "1.2rem" }} | ||
> | ||
<img src={item.src} alt="magazine" /> | ||
<img | ||
src={item.edition_num} | ||
alt="Edition" | ||
style={{ | ||
margin: "0 auto", | ||
padding: ".5rem", | ||
}} | ||
/> | ||
</a> | ||
))} | ||
</div> | ||
{/* <ScrolBar /> */} | ||
{/* <div className={styles.movingCards}> | ||
{ | ||
data.map((item)=>( | ||
<Card imgSrc={item.src} srcMag={item.link} /> | ||
)) | ||
} | ||
</div> */} | ||
|
||
{/* <div id={styles.random}> | ||
<img src="https://res.cloudinary.com/dhpqjrbha/image/upload/c_pad,b_auto:predominant,fl_preserve_transparency/v1711056519/Group_2608667_reshtk.jpg?_s=public-apps" alt="" /> | ||
</div> */} | ||
{/* Lorem ipsum dolor sit amet, consectetur adipisicing elit. Praesentium ratione, perspiciatis vitae sit asperiores quia sunt quasi maxime. Nihil, officia qui fuga reprehenderit obcaecati ipsam alias vel hic laudantium pariatur aliquam mollitia reiciendis explicabo? */} | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
}; | ||
|
||
export default Borhomthuri; |
Oops, something went wrong.