Skip to content

Commit

Permalink
outdated data also it kinda looked like shit lol
Browse files Browse the repository at this point in the history
  • Loading branch information
aenriii committed Jan 20, 2024
1 parent 749fab3 commit e76cfc9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 55 deletions.
63 changes: 8 additions & 55 deletions src/components/CatppuccinTabber.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import ProjectCard from './parts/ProjectCard.svelte';
import Block from './parts/Block.svelte';
import Timestamp from './parts/Timestamp.svelte';
let activeTab = 'about';
let activeTab = 'projects';
let getSetActiveTab = (tabName: string) => {
return () => {
Expand Down Expand Up @@ -49,47 +49,11 @@

>
{#if activeTab === 'about'}
<!--
-->
<Block>
<span>hi! im aenri, a kitty cat <br />
<Timestamp date="07-02-2005" content="that's been alive for %%!"/>
<!-- that's been alive for 18 years! -->
</span>

</Block>
<Block>
I'm attending ISU for computer
<br /> science and gender studies!
<Block bg={palette.colors.surface2.hex}>
<span>I should be graduating
<br /> <Timestamp date="06-20-2026" content="in the next %%!"/></span>
</Block>
</Block>
<Block>
<Block bg={palette.colors.surface2.hex}>
<span>i've been on estrogen <br /> for <Timestamp date="10-20-2023" content="the last %%!"/></span>
</Block>

and

<Block bg={palette.colors.surface2.hex}>
<span>i've been with my partners <br /> for <Timestamp date="05-29-2023" content="the last %%!"/></span>
</Block>
</Block>
<Block>
<span style="padding-bottom:10px;font-weight:bold">Site Links</span>
<Block bg={palette.colors.surface2.hex}>
nothing yet!
<!-- <span class="site-link"> my <a href="">opinions</a> </span>
<span class="site-link"> my <a href="">blog</a> </span>
<span class="site-link"> my <a href="">api status</a> </span> -->
</Block>
</Block>

<Block>
This part of my site is under construction!
<br />
Check back later &lt;3
</Block>
{:else if activeTab === 'projects'}
<ProjectCard
name="Genesis"
Expand Down Expand Up @@ -221,22 +185,11 @@
}
&.about {
gap: 25px;
@media (max-width: 768px) {
display: flex;
display: flex;
flex-direction: column;
align-items: center;
padding:15px;
}
@media (min-width: 768px) {
display: grid;
grid-gap: 10px;
grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
align-content: space-between;
justify-content: stretch;
column-count: 2;
padding: 25px;
}
}
}
.site-link, .site-link a {
Expand Down
1 change: 1 addition & 0 deletions src/components/parts/Block.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
font-size: 20px;
max-width: calc(100% - 80px);
text-align: center;
}
span {
Expand Down

0 comments on commit e76cfc9

Please sign in to comment.