generated from manuelernestog/astrofy
-
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
Showing
6 changed files
with
33 additions
and
45 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ import { Image } from "astro:assets"; | |
format="webp" | ||
width={300} | ||
height={300} | ||
src="/webImage.jpg" | ||
src="/profile_pic.jpg" | ||
alt="Profile image" | ||
/> | ||
</div> | ||
|
@@ -32,7 +32,7 @@ import { Image } from "astro:assets"; | |
<li><a id="projects" href="/projects">Projects</a></li> | ||
<li><a id="blog" href="/blog/">Blog</a></li> | ||
<li><a id="cv" href="/cv">CV</a></li> | ||
<li><a href="mailto:[email protected]">Contact</a></li> | ||
<li><a href="mailto:[email protected]">Email me</a></li> | ||
</ul> | ||
<div class="social-icons px-4 my-2 flex self-center"> | ||
|
||
|
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,8 @@ | ||
--- | ||
title: "Am I Tired" | ||
description: "Runner up for Hacktech 2024, this is an AI tool to detect whether someone is tired or not" | ||
pubDate: "May 8, 2024" | ||
heroImage: "/post_img.webp" | ||
--- | ||
|
||
[Here](https://devpost.com/software/am-i-tired-ait) is the devpost link. Unfortunately due the ML model being run on a local machine, the app is currently down. |
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 |
---|---|---|
@@ -1,45 +1,32 @@ | ||
--- | ||
import BaseLayout from "../layouts/BaseLayout.astro"; | ||
import HorizontalCard from "../components/HorizontalCard.astro"; | ||
// TODO: Make sure to sync up front-page and project page projects, so I don't have to change it twice | ||
--- | ||
|
||
<BaseLayout title = "Projects"> | ||
<div> | ||
<div class="text-3xl w-full font-bold mb-5">Projects Header</div> | ||
<div class="text-3xl w-full font-bold mb-5">Hackathons</div> | ||
</div> | ||
|
||
<HorizontalCard | ||
title="Demo Project 1" | ||
img="/post_img.webp" | ||
desc="This is sample text for project 1" | ||
url="#" | ||
badge="NEW" | ||
title="Am I Tried" | ||
img="/post_img.webp" | ||
desc="Runner up winner at hacktech 2024 by Caltech" | ||
url="https://devpost.com/software/am-i-tired-ait" | ||
badge="NEW" | ||
/> | ||
<div class="divider my-0"></div> | ||
<HorizontalCard | ||
title="Demo Project 2" | ||
img="/post_img.webp" | ||
desc="This is sample text for project 2" | ||
url="#" | ||
/> | ||
|
||
<div> | ||
<div class="text-3xl w-full font-bold mb-5 mt-10">Projects Header</div> | ||
<div class="text-3xl w-full font-bold mb-5 mt-10">Personal Projects</div> | ||
</div> | ||
|
||
<HorizontalCard | ||
title="Demo Project 3" | ||
title="Amati++" | ||
img="/post_img.webp" | ||
desc="This is sample text for project 3" | ||
url="#" | ||
desc="Project I am working on for Google Summer of Code 2024" | ||
url="https://github.com/Orisu179/AmatiPP" | ||
badge="FOSS" | ||
/> | ||
<div class="divider my-0"></div> | ||
<HorizontalCard | ||
title="Demo Project 4" | ||
img="/post_img.webp" | ||
desc="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua." | ||
url="#" | ||
/> | ||
<div class="divider my-0"></div> | ||
</BaseLayout> |