-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
759f173
commit acdc08d
Showing
13 changed files
with
436 additions
and
58 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
Binary file not shown.
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
This file was deleted.
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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 |
---|---|---|
@@ -0,0 +1,79 @@ | ||
import React from "react"; | ||
import { Container, Row, Col, Image } from "react-bootstrap"; | ||
import { FaLinkedin, FaTwitter, FaGithub } from "react-icons/fa"; | ||
|
||
function About() { | ||
return ( | ||
<Container className="px-5"> | ||
<Row> | ||
{/* Empty column on the left */} | ||
<Col md={1}></Col> | ||
|
||
{/* Profile column */} | ||
<Col md={3} className="text-center"> | ||
<Image | ||
src={require("../assets/zara.png")} | ||
roundedCircle | ||
fluid | ||
alt="Zara" | ||
/> | ||
|
||
<div className="my-3"> | ||
<a | ||
href="https://www.linkedin.com/in/zarasiddique" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<FaLinkedin size={24} className="me-3" /> | ||
</a> | ||
<a | ||
href="https://twitter.com/thezarasiddique" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<FaTwitter size={24} className="me-3" /> | ||
</a> | ||
<a | ||
href="https://github.com/groovychoons" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<FaGithub size={24} /> | ||
</a> | ||
</div> | ||
</Col> | ||
<Col md={1}></Col> | ||
|
||
{/* Main content column */} | ||
<Col md={6}> | ||
<p> | ||
I'm a third-year PhD student at Cardiff University in the{" "} | ||
<a href="https://cardiffnlp.github.io/">Cardiff NLP</a> Group. My | ||
research focuses on intersectional harms in LLMs, looking | ||
specifically at how we can measure and mitigate these harms in NLP | ||
systems. | ||
</p> | ||
<p>If you'd like to know more about me, my CV is linked above.</p> | ||
<h2>Publications</h2> | ||
<ul> | ||
<li> | ||
<a href="https://arxiv.org/abs/2407.06917"> | ||
Who is better at math, Jenny or Jingzhen? Uncovering Stereotypes | ||
in Large Language Models | ||
</a> | ||
<p> | ||
<strong>Zara Siddique,</strong> Liam D. Turner, Luis | ||
Espinosa-Anke (EMNLP 2024). | ||
</p> | ||
</li> | ||
</ul> | ||
</Col> | ||
|
||
{/* Empty column on the right */} | ||
<Col md={1}></Col> | ||
</Row> | ||
</Container> | ||
); | ||
} | ||
|
||
export default About; |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import React from 'react'; | ||
import { Container } from 'react-bootstrap'; | ||
|
||
function Blog() { | ||
return ( | ||
<Container> | ||
<h1>Under Construction!</h1> | ||
<p>(She's a busy gal)</p> | ||
</Container> | ||
); | ||
} | ||
|
||
export default Blog; |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react'; | ||
import { Container, Button } from 'react-bootstrap'; | ||
|
||
function CV() { | ||
return ( | ||
<Container> | ||
<h1>My CV</h1> | ||
<p>You can download my CV by clicking the link below:</p> | ||
<Button variant="primary" href="/path-to-your-cv.pdf" download>Download CV</Button> | ||
</Container> | ||
); | ||
} | ||
|
||
export default CV; |