Skip to content

Commit

Permalink
About me thingz
Browse files Browse the repository at this point in the history
  • Loading branch information
alexristinmaa committed Nov 10, 2024
1 parent 6d52934 commit a3bb528
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 3 deletions.
45 changes: 45 additions & 0 deletions alexanderristinmaa/app/(homepage)/alex/page.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
#imgDiv {
width: 500px;
}

#imgDiv > p {
margin-top: 8px;
float: right;
}

#img {
width: 100%;
border: 2px solid var(--black);
}

#imgText {
display: flex;
flex-direction: row;
gap: 30px;
}

#textDiv {
flex: 1;
display: flex;
gap: 1em;
flex-direction: column;
}

#textDiv a {
color: var(--highlight)
}

@media screen and (max-width: 900px) {
#imgDiv {
width: min(100%, 500px);
}
#img {
width: 100%;
}

#imgText {
padding-left: 20px;
padding-right: 20px;
flex-direction: column;
}
}
21 changes: 18 additions & 3 deletions alexanderristinmaa/app/(homepage)/alex/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,24 @@ import styles from './page.module.css';

export default function Home() {
return (
<div>
<p><b>VEM ÄR JAG?</b></p>
<p>Jag heter Alex och kommer ifrån Sverige.</p>
<div id={styles.imgText}>
<div id={styles.imgDiv}>
<img id={styles.img} src='/alex/me.jpg'></img>
<p><i>Jag i Fontainebleau, Frankrike. 2024</i></p>
</div>
<div id={styles.textDiv}>
<p>Hejsan!</p>
<p>Vad kul att du vill veta mer om mig :)
Det finns <u>säkerligen</u> en massa spännande saker som du undrar som jag tyvärr måste undanhålla dig i detta nu.
Detta är <b>inte</b> för att jag inte gillar dig! Det är helt enkelt för att jag är lat.
</p>
<p><b>Bra länkar:</b></p>
<ul style={{listStyle: "none"}}>
<li>Instagram: <a target="_blank" href="https://www.instagram.com/alexristinmaa/">@alexristinmaa</a></li>
<li>27crags: <a target="_blank" href="https://27crags.com/climbers/alexanderris">alexanderris</a></li>
</ul>

</div>
</div>

);
Expand Down
Binary file added alexanderristinmaa/public/alex/me.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a3bb528

Please sign in to comment.