Personal Websites Update
This commit is contained in:
1
src/assets/icons/IconWebsite.svg
Normal file
1
src/assets/icons/IconWebsite.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="currentColor" d="M9 20v-1h2v-2H4.616q-.691 0-1.153-.462T3 15.385v-9.77q0-.69.463-1.152T4.615 4h14.77q.69 0 1.152.463T21 5.616v9.769q0 .69-.463 1.153T19.385 17H13v2h2v1zm-4.384-4h14.769q.23 0 .423-.192t.192-.423v-9.77q0-.23-.192-.423T19.385 5H4.615q-.23 0-.423.192T4 5.616v9.769q0 .23.192.423t.423.192M4 16V5z"/></svg>
|
||||
|
After Width: | Height: | Size: 412 B |
@@ -1,9 +1,9 @@
|
||||
export const SITE = {
|
||||
website: "https://dev.sirblob.co/", // replace this with your deployed domain
|
||||
website: "https://blog.sirblob.co/", // replace this with your deployed domain
|
||||
author: "Sir Blob",
|
||||
profile: "https://dev.sirblob.co/",
|
||||
desc: "My Engineering Blog",
|
||||
title: "Blob's Chai",
|
||||
title: "Finding Out",
|
||||
ogImage: "blob_nerd.png",
|
||||
lightAndDarkMode: true,
|
||||
postPerIndex: 4,
|
||||
@@ -14,7 +14,7 @@ export const SITE = {
|
||||
editPost: {
|
||||
enabled: false,
|
||||
text: "Edit page",
|
||||
url: "https://github.com/satnaing/astro-paper/edit/main/",
|
||||
url: "https://github.com/SirBlobby/astro-paper/edit/main/",
|
||||
},
|
||||
dynamicOgImage: true,
|
||||
dir: "ltr", // "rtl" | "auto"
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import type { Props } from "astro";
|
||||
|
||||
// import IconMail from "@/assets/icons/IconMail.svg";
|
||||
// import IconBrandX from "@/assets/icons/IconBrandX.svg";
|
||||
// import IconLinkedin from "@/assets/icons/IconLinkedin.svg";
|
||||
@@ -6,6 +7,7 @@ import type { Props } from "astro";
|
||||
// import IconFacebook from "@/assets/icons/IconFacebook.svg";
|
||||
// import IconTelegram from "@/assets/icons/IconTelegram.svg";
|
||||
// import IconPinterest from "@/assets/icons/IconPinterest.svg";
|
||||
import IconWebsite from "@/assets/icons/IconWebsite.svg";
|
||||
import IconGitHub from "@/assets/icons/IconGitHub.svg";
|
||||
import { SITE } from "@/config";
|
||||
|
||||
@@ -17,10 +19,16 @@ interface Social {
|
||||
}
|
||||
|
||||
export const SOCIALS: Social[] = [
|
||||
{
|
||||
name: "Website",
|
||||
href: SITE.profile,
|
||||
linkTitle: `${SITE.author} Website`,
|
||||
icon: IconWebsite,
|
||||
},
|
||||
{
|
||||
name: "GitHub",
|
||||
href: "https://github.com/SirBlobby",
|
||||
linkTitle: `${SITE.title} on GitHub`,
|
||||
linkTitle: `${SITE.author} on GitHub`,
|
||||
icon: IconGitHub,
|
||||
}
|
||||
] as const;
|
||||
|
||||
@@ -1,21 +0,0 @@
|
||||
---
|
||||
title: Example Draft Post
|
||||
author: Sat Naing
|
||||
pubDatetime: 2022-06-06T04:06:31Z
|
||||
slug: example-draft-post
|
||||
featured: false
|
||||
draft: false
|
||||
tags:
|
||||
- TypeScript
|
||||
- Astro
|
||||
description:
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
|
||||
incididunt ut labore et dolore magna aliqua. Praesent elementum facilisis leo vel
|
||||
fringilla est
|
||||
---
|
||||
|
||||
Users cannot see this post because it is in draft.
|
||||
|
||||
## Motivation
|
||||
|
||||
rec 1
|
||||
19
src/data/blog/personal-websites.md
Normal file
19
src/data/blog/personal-websites.md
Normal file
@@ -0,0 +1,19 @@
|
||||
---
|
||||
title: Personal Websites
|
||||
author: Gagan M
|
||||
pubDatetime: 2025-11-29T14:45:00Z
|
||||
slug: personal-websites
|
||||
featured: false
|
||||
draft: false
|
||||
tags:
|
||||
- Web Developement
|
||||
- SvelteKit
|
||||
- TailwindCSS
|
||||
- Arch Linux
|
||||
description:
|
||||
My Journey through creating my personal website.
|
||||
---
|
||||
|
||||
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor
|
||||
incididunt ut labore et dolore magna aliqua. Praesent elementum facilisis leo vel
|
||||
fringilla est
|
||||
@@ -3,6 +3,10 @@ layout: ../layouts/AboutLayout.astro
|
||||
title: "About"
|
||||
---
|
||||
|
||||
Hi, I am Sir Blob a developer that loves making things. My passion is using Computer Science with practical Engineering to enhance technology for the future. Therefore, I do fun coding projects, Game Jams, and Hackathons. I like to play video games, like Minecraft and Pokémon TCG Live.
|
||||
## Hi, I'm Sir Blob
|
||||
|
||||
I am a Engineering University Student who loves making things. I build fun coding projects, participate in Game Jams and Hackathons, and enjoy games like Minecraft and Pokémon TCG Live. I'm interested in Open Source, Game Development, Embedded Systems, and AI/ML.
|
||||
|
||||
Visit My Portfolio For more => [Link](https://dev.sirblob.co/portfolio)
|
||||
|
||||

|
||||
|
||||
Reference in New Issue
Block a user