Skip to content

Commit bfd4a55

Browse files
committed
feat: index page
1 parent 164d7c3 commit bfd4a55

File tree

3 files changed

+43
-21
lines changed

3 files changed

+43
-21
lines changed

astro.config.mjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ import starlight from '@astrojs/starlight';
66
export default defineConfig({
77
integrations: [
88
starlight({
9-
title: 'My Docs',
9+
title: 'bitmap4',
1010
social: {
11-
github: 'https://github.com/withastro/starlight',
11+
github: 'https://github.com/bitmap4',
1212
},
1313
sidebar: [
1414
{
15-
label: 'Guides',
15+
label: 'Projects',
1616
items: [
1717
// Each item here is one entry in the navigation menu.
18-
{ label: 'Example Guide', slug: 'guides/example' },
18+
{ label: 'placeholder', slug: 'projects/placeholder' },
1919
],
2020
},
2121
{

src/content/docs/index.mdx

Lines changed: 39 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,58 @@
11
---
2-
title: Welcome to Starlight
3-
description: Get started building your docs site with Starlight.
2+
title: bitmap4's portfolio
3+
# description: Get started building your docs site with Starlight.
44
template: splash
55
hero:
6-
tagline: Congrats on setting up a new Starlight project!
6+
tagline: Researcher and Developer
77
image:
88
file: ../../assets/houston.webp
99
actions:
10-
- text: Example Guide
11-
link: /guides/example/
10+
- text: See my projects
11+
link: /projects/placeholder
1212
icon: right-arrow
13-
- text: Read the Starlight docs
14-
link: https://starlight.astro.build
15-
icon: external
13+
- text: Resume
14+
link: https://drive.google.com/file/d/1L8lr5-B45VnHHbTIvZRya9fNBJOjI8h3/
15+
icon: document
1616
variant: minimal
1717
---
1818

1919
import { Card, CardGrid } from '@astrojs/starlight/components';
2020

21-
## Next steps
21+
## About Me
22+
23+
I'm Abhyudit Singh, an undergraduate at IIIT Hyderabad.
24+
I'm passionate about cybersecurity, machine learning, and software development.
25+
26+
27+
## Featured Projects
2228

2329
<CardGrid stagger>
24-
<Card title="Update content" icon="pencil">
25-
Edit `src/content/docs/index.mdx` to see this page change.
30+
<Card title="Language Identification Analysis" icon="code">
31+
A comparative study of various language classifiers based on different combinations of linguistic features vs a baseline n-grams based model
32+
[`GitHub`](https://github.com/bitmap4/language-identification-analysis)
33+
[`Report`](https://drive.google.com/file/d/1AOhGJupvoLIHYv3SttUXIJ8m7ax3K5HE)
2634
</Card>
27-
<Card title="Add new content" icon="add-document">
28-
Add Markdown or MDX files to `src/content/docs` to create new pages.
35+
<Card title="Morphological Inflections" icon="code">
36+
Implemented a morph inflection predictor using a RNN model and compared against baseline metrics
37+
[`GitHub`](https://github.com/bitmap4/morphological-inflections)
2938
</Card>
30-
<Card title="Configure your site" icon="setting">
31-
Edit your `sidebar` and other config in `astro.config.mjs`.
39+
<Card title="C-Shell" icon="code">
40+
Shell written in C for the course Operating Systems and Networks
41+
[`GitHub`](https://github.com/bitmap4/shell-osn)
3242
</Card>
33-
<Card title="Read the docs" icon="open-book">
34-
Learn more in [the Starlight Docs](https://starlight.astro.build/).
43+
<Card title="Kafka." icon="code">
44+
Images to Video generator for the course Introduction to Software Systems
45+
[`GitHub`](https://github.com/bitmap4/issproject)
3546
</Card>
3647
</CardGrid>
48+
49+
## Let's Connect
50+
51+
<CardGrid stagger>
52+
<Card title="GitHub" icon="github">
53+
Check out my code and contributions on [GitHub](https://github.com/bitmap4)
54+
</Card>
55+
<Card title="LinkedIn" icon="linkedin">
56+
Connect with me on [LinkedIn](https://linkedin.com/in/abhyudit-singh-07aaba265)
57+
</Card>
58+
</CardGrid>

0 commit comments

Comments
 (0)