diff --git a/src/components/Hero.astro b/src/components/Hero.astro index f857cf7..bf4f1ad 100644 --- a/src/components/Hero.astro +++ b/src/components/Hero.astro @@ -1,5 +1,5 @@ --- -import { ArrowRight, FolderCode, Key, Rss } from "@lucide/astro"; +import { FolderCode, Key, Rss } from "@lucide/astro"; import { Image } from "astro:assets"; import type { SocialLinks } from "../config"; @@ -8,7 +8,6 @@ interface Props { title: string; description: string; avatar: any; - location?: string; socialLinks?: SocialLinks; gpgKey?: string; rssFeed?: string; @@ -19,18 +18,17 @@ const { title, description, avatar, - location, socialLinks, gpgKey, rssFeed, } = Astro.props; --- - - + + @@ -40,7 +38,6 @@ const { Hi, I'm {name} {title} - {location && {location}} {description} @@ -335,25 +332,6 @@ const { ) } - - - - Blog Posts - - - - Projects - - - - Infosec Notes - - - - Contact Me - - - diff --git a/src/components/Notes.astro b/src/components/Notes.astro new file mode 100644 index 0000000..5d3bd90 --- /dev/null +++ b/src/components/Notes.astro @@ -0,0 +1,27 @@ +--- +import { ArrowRight } from "@lucide/astro"; +--- + + + + + Infosec notes + + + + + Cheatsheets and references on tools and techniques I use for CTFs and + pentesting. + + + Browse notes + + + + + diff --git a/src/config.ts b/src/config.ts index a5573fa..a407ea8 100644 --- a/src/config.ts +++ b/src/config.ts @@ -23,7 +23,6 @@ export interface SiteConfig { title: string; description: string; avatar: string; - location: string; socialLinks: SocialLinks; gpgKey?: string; rssFeed?: string; @@ -39,7 +38,6 @@ export const siteConfig: SiteConfig = { description: "Infosec engineer passionate about Linux/NixOS, blockchains, OSINT & FOSS. Hacking with Go, exploring open tech, and contributing whenever I can 🐧", avatar: "/avatar.png", - location: "🇫🇷 France", socialLinks: { github: "https://github.com/anotherhadi", gitlab: "https://gitlab.com/anotherhadi_mirror", diff --git a/src/pages/index.astro b/src/pages/index.astro index 0bba479..4582b23 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -3,25 +3,26 @@ import Layout from "../layouts/Layout.astro"; import Hero from "../components/Hero.astro"; import Projects from "../components/Projects.astro"; import Blog from "../components/Blog.astro"; +import Notes from "../components/Notes.astro"; import Contact from "../components/Contact.astro"; import { siteConfig } from "../config"; import avatar from "../../public/avatar.jpg"; --- - + +
{title}
{location}
{description}
+ Cheatsheets and references on tools and techniques I use for CTFs and + pentesting. +