Skip to content

Commit a19f587

Browse files
committed
feat: "read more" links for featured projects
1 parent dbb5e9f commit a19f587

File tree

1 file changed

+45
-1
lines changed

1 file changed

+45
-1
lines changed

src/content/docs/index.mdx

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ hero:
1616
variant: minimal
1717
---
1818

19-
import { Card, CardGrid } from '@astrojs/starlight/components';
19+
import { Card, CardGrid, LinkButton } from '@astrojs/starlight/components';
2020

2121
## About Me
2222

@@ -31,18 +31,62 @@ I'm passionate about cybersecurity, machine learning, and software development.
3131
A comparative study of various language classifiers based on different combinations of linguistic features vs a baseline n-grams based model
3232
[`GitHub`](https://github.com/bitmap4/language-identification-analysis)
3333
[`Report`](https://drive.google.com/file/d/1AOhGJupvoLIHYv3SttUXIJ8m7ax3K5HE)
34+
<LinkButton
35+
href="/projects/01-lid"
36+
icon="right-arrow"
37+
style={{
38+
borderBottom: '1px solid var(--sl-color-accent-high)',
39+
borderRadius: 0,
40+
padding: 0,
41+
color: 'var(--sl-color-accent-high)'
42+
}}
43+
variant="minimal"
44+
>Read More</LinkButton>
3445
</Card>
3546
<Card title="Morphological Inflections" icon="translate">
3647
Implemented a morph inflection predictor using a RNN model and compared against baseline metrics
3748
[`GitHub`](https://github.com/bitmap4/morphological-inflections)
49+
<LinkButton
50+
href="/projects/02-morph"
51+
icon="right-arrow"
52+
style={{
53+
borderBottom: '1px solid var(--sl-color-accent-high)',
54+
borderRadius: 0,
55+
padding: 0,
56+
color: 'var(--sl-color-accent-high)'
57+
}}
58+
variant="minimal"
59+
>Read More</LinkButton>
3860
</Card>
3961
<Card title="C-Shell" icon="seti:shell">
4062
Shell written in C for the course Operating Systems and Networks
4163
[`GitHub`](https://github.com/bitmap4/shell-osn)
64+
<LinkButton
65+
href="/projects/04-shell-v0"
66+
icon="right-arrow"
67+
style={{
68+
borderBottom: '1px solid var(--sl-color-accent-high)',
69+
borderRadius: 0,
70+
padding: 0,
71+
color: 'var(--sl-color-accent-high)'
72+
}}
73+
variant="minimal"
74+
>Read More</LinkButton>
4275
</Card>
4376
<Card title="Kafka." icon="seti:video">
4477
Images to Video generator for the course Introduction to Software Systems
4578
[`GitHub`](https://github.com/bitmap4/issproject)
79+
<LinkButton
80+
href="/projects/05-kafka-v0"
81+
icon="right-arrow"
82+
style={{
83+
borderBottom: '1px solid var(--sl-color-accent-high)',
84+
borderRadius: 0,
85+
padding: 0,
86+
color: 'var(--sl-color-accent-high)'
87+
}}
88+
variant="minimal"
89+
>Read More</LinkButton>
4690
</Card>
4791
</CardGrid>
4892

0 commit comments

Comments
 (0)